diff options
author | Juan Linietsky <reduzio@gmail.com> | 2021-08-23 22:30:43 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-23 22:30:43 -0300 |
commit | 13bd020a23008cd4e51be21865c620e12e3b3ded (patch) | |
tree | 0de866fe3b53b3d6a51bf1e52a808c628802ff7e /doc | |
parent | 770a1d00a3b14c4abd1cd57c9621de93b24478aa (diff) | |
parent | 65ca132a80760be9f4c0fe1a175445e867bb7ac8 (diff) |
Merge pull request #52045 from reduz/expose-rid-creation-utilities
Expose RID creation utilities.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/@GlobalScope.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/classes/@GlobalScope.xml b/doc/classes/@GlobalScope.xml index af39069b38..090ca5a033 100644 --- a/doc/classes/@GlobalScope.xml +++ b/doc/classes/@GlobalScope.xml @@ -711,6 +711,19 @@ <description> </description> </method> + <method name="rid_allocate_id"> + <return type="int" /> + <description> + Allocate a unique ID which can be used by the implementation to construct a RID. This is used mainly from native extensions to implement servers. + </description> + </method> + <method name="rid_from_int64"> + <return type="RID" /> + <argument index="0" name="base" type="int" /> + <description> + Create a RID from an int64. This is used mainly from native extensions to build servers. + </description> + </method> <method name="round"> <return type="float" /> <argument index="0" name="x" type="float" /> |