Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
R
 ranged constructor, ext.fbext_Array((T_)(Allocator_))
 ReadLine, Console
 Remove, fbext_HashTable(T_)
 remove_child, node
 RemoveIf, List
 Repeat
 repeat constructor, ext.fbext_Array((T_)(Allocator_))
 Replace
 ReplaceCopy
 ReplaceCopyIf
 ReplaceIf
 ReplaceImage, Sprite
 Reserve, ext.fbext_Array((T_)(Allocator_))
 reset, BitArray
 Reset
 Resize, ext.fbext_Array((T_)(Allocator_))
 Reverse
 ReverseCopy
 Right, XString
 RndRange, ext.math
 root, dir
 rootPath, dir
 Rot13
 Rot13Copy
 Rotate
 RotateFrom, Sprite
 RotateFromImage, Sprite
 RotoZoom, ext.gfx
 RotoZoomASM, ext.gfx
 RoundPow2, ext.math
 RTrim, XString
 runTests, ext.Testly
Constructs an array from a copy of a range of elements.
declare function ReadLine( ) as string
Retreives one full line of input from the console.
declare sub Remove (byref key_ as string)
Searches for a key in the table and removes it.
Remove a child from this node.
declare sub RemoveIf (
   byval pred as function ( byref as const fbext_TypeName( T_) ) as bool
)
Removes elements from the list satisfying a predicate.
declare function Repeat overload (byval ascii_code as integer,
byval n as integer) as string
Returns a string of length n consisting of as many characters with the ascii code ascii_code.
declare function Repeat (byval n as integer) as XString
Repeats the string a certain number of times.
Constructs an array consisting of copies of the default value.
declare function Replace overload (
   byval first as fbext_TypeName(T_) ptr,
   byval last as fbext_TypeName(T_) ptr,
   byref oldvalue as const fbext_TypeName(T_),
   byref newvalue as const fbext_TypeName(T_)
) as fbext_TypeName(T_) ptr
Replaces each element in the range [//first//, //last//) that has a certain value //oldvalue// with another value //newvalue//.
declare sub Replace overload (byref subject as string,
byref oldtext as const string,
byref newtext as const string)
Replaces all unique occurences of oldtext found within subject, from beginning to end, and replaces them with newtext.
declare sub Replace (byref oldtext as const string,
byref newtext as const string)
Replaces a substring with a string you provide
declare function ReplaceCopy overload (
   byval first as fbext_TypeName(T_) ptr,
   byval last as fbext_TypeName(T_) ptr,
   byval result as fbext_TypeName(T_) ptr,
   byref oldvalue as const fbext_TypeName(T_),
   byref newvalue as const fbext_TypeName(T_)
) as fbext_TypeName(T_) ptr
Replaces each element in the range [//first//, //last//) that has a certain value //oldvalue// with another value //newvalue// and copies the results to the range beginning at //result//.
declare function ReplaceCopy overload (
   byref subject as const string,
   byref oldtext as const string,
   byref newtext as const string
) as string
Returns a copy of subject with all unique occurrences of oldtext replaced with newtext.
declare const function ReplaceCopy (byref oldtext as const string,
byref newtext as const string) as XString
Performs a text substitution in the XString object
declare function ReplaceCopyIf overload (
   byval first as fbext_TypeName(T_) ptr,
   byval last as fbext_TypeName(T_) ptr,
   byval result as fbext_TypeName(T_) ptr,
   byval pred as function ( byref as const fbext_TypeName(T_) ) as bool,
   byref newvalue as const fbext_TypeName(T_)
) as fbext_TypeName(T_) ptr
Replaces each element in the range [//first//, //last//) that satisfies a predicate with another value //newvalue// and copies the results to the range beginning at //result//.
declare function ReplaceIf overload (
   byval first as fbext_TypeName(T_) ptr,
   byval last as fbext_TypeName(T_) ptr,
   byval pred as function ( byref as const fbext_TypeName(T_) ) as bool,
   byref newvalue as const fbext_TypeName(T_)
) as fbext_TypeName(T_) ptr
Replaces each element in the range [//first//, //last//) that satsifies a predicate //pred// with another value //newvalue//.
declare sub ReplaceImage(byval index as uinteger,
byval img as FB.IMAGE ptr)
declare sub Reserve (byval n as SizeType)
Ensures that the capacity of the array is at least n.
declare sub reset(byval bit_ as SizeType)
Sets the value of a certain bit to 0 or off.
declare sub Reset (byval p as fbext_TypeName(T_) ptr =  null)
Forces the fbext_SharedPtrArray(T_) to reference another resource.
declare sub Reset (byval p as fbext_TypeName(T_) ptr =  null)
Forces the fbext_SharedPtr(T_) to reference another resource.
declare sub Resize (byval newsize as SizeType)
Changes the size of the array to newsize number of elements.
declare sub Reverse overload (byref subject as string)
Reverses the order of the characters in subject.
declare sub Reverse ( )
Reverses the string in-place.
declare function ReverseCopy overload (byref subject as const string) as string
Returns a copy of subject with the order of the characters reversed.
declare const function ReverseCopy ( ) as XString
Reverses the string.
declare function Right (byval length as integer) as string
Returns a string of length characters from the right side of the XString object
declare function RndRange overload (byval min_ as integer,  
byval max as integer,  
byval getnew as integer =  1) as integer
Returns an integer within the specified range.
declare function root () as Directory
Returns a Directory object pointing to the root of the current filesystem.
declare function rootPath () as string
Returns a string containing the path of the root of the current filesystem.
declare sub Rot13 (byref subject as string)
The ROT13 encoding simply shifts every letter by 13 places in the alphabet while leaving non-alpha characters untouched.
declare sub Rot13 ( )
Performs a rot13 rotation on a XString object
declare function Rot13Copy (byref subject as const string) as string
The ROT13 encoding simply shifts every letter by 13 places in the alphabet while leaving non-alpha characters untouched.
declare const function Rot13Copy ( ) as XString
Performs a rot13 rotation on a XString object
declare sub Rotate(byref dst as FB.IMAGE ptr,
byref src as const FB.IMAGE ptr,
byref positx as integer,
byref posity as integer,
byref angle as integer)
Rotates a image buffer.
declare sub Rotate(byref anglex as single,
byref angley as single,
byref anglez as single)
generic rotation function
declare sub RotateFrom(byval from_index as uinteger,
byval to_index as uinteger,
byval angle as integer)
Rotates one frame to another frame.
declare sub RotateFromImage(byval from_image as FB.IMAGE ptr,
byval to_index as uinteger,
byval angle as integer)
Rotates a FB.IMAGE to a frame.
declare sub RotoZoom(byref dst as FB.IMAGE ptr =  0,
byref src as const FB.IMAGE ptr,  
byref positx as integer,  
byref posity as integer,  
byref angle as integer,  
byref zoomx as single,  
byref zoomy as single  )
Rotates and scales an image buffer.
declare sub RotoZoomASM(byref dst as FB.IMAGE ptr =  0,
byref src as const FB.IMAGE ptr,  
byval positx as integer,  
byval posity as integer,  
byref angle as integer,  
byref zoomx as single,  
byref zoomy as single =  0,
byval transcol as uinteger =  &hffff00ff)
Rotates and scales an image buffer.
declare function RoundPow2 overload (
   byval n as fbext_TypeName(NumericType_)
) as fbext_TypeName(NumericType_)
Finds the next power of 2 after a number only if the number passed is not a power of 2 already.
declare sub RTrim ( )
Trims whitespace from the right side of a XString object
declare function runTests() as ext.bool
Runs the testcases for all registered Suites.