| G | |
| ge | |
| get, deque | |
| get_breadth_first_iterator | |
| get_descending_iterator, deque | |
| get_elapsed, kitchen_timer | |
| get_first, deque | |
| get_index, route_node | |
| get_instance | |
| get_iterator | |
| get_last, deque | |
| get_last_node | |
| get_location_name, tree | |
| get_num_children, tree_node | |
| get_num_of_to_nodes, route_node | |
| get_remaining, kitchen_timer | |
| get_state, kitchen_timer | |
| graft | |
| gt | |
| H | |
| has_child, tree_node | |
| has_next | |
| has_to_nodes, route_node | |
| hash, text | |
| I | |
| index, text | |
| init | |
| insert, text | |
| is_alpha, text | |
| is_digit, text | |
| is_empty | |
| is_lower, text | |
| is_paused, kitchen_timer | |
| is_printable, text | |
| is_running, kitchen_timer | |
| is_single_bit_type, text | |
| is_space, text | |
| is_stopped, kitchen_timer | |
| is_upper, text |
(VIRTUAL) Returns 1 if x is greater than or equal to y.
virtual function bit ge( T x, T y )
Returns 1 if this object is greater than or equal to the specified pair.
function bit ge( const ref this_type p )
Returns 1 if this object is greater than or equal to the specified tuple.
function bit ge( const ref this_type t )
(VIRTUAL) Retrieves the head of the deque and remove the element.
virtual function bit get( ref T e )
(VIRTUAL) Returns a route_breadth_first_iterator over the elements in this route.
virtual function iterator#( T ) get_breadth_first_iterator()
(VIRTUAL) Returns a tree_breadth_first_iterator over the elements in this tree.
virtual function iterator#( T ) get_breadth_first_iterator()
(VIRTUAL) Returns an iterator over the elements in this deque in reverse order.
virtual function iterator#( T ) get_descending_iterator()
Returns the elapsed time since the timer was last started or resumed.
function time get_elapsed()
(VIRTUAL) Retrieves the head of the deque and remove the element.
virtual function bit get_first( ref T e )
(VIRTUAL) Returns the index of the to_nodes this node is connected to, from the view point of the specified “from node”.
virtual function int get_index( int from_node_index )
(STATIC) Returns the singleton instance of this formatter.
static function this_type get_instance()
(STATIC) Returns the singleton instance of this comparator.
static function this_type get_instance()
(STATIC) Returns the singleton instance of this formatter.
static function this_type get_instance()
(STATIC) Returns the singleton instance of this formatter.
static function this_type get_instance()
(STATIC) Returns the singleton instance of this formatter.
static function this_type get_instance()
(STATIC) Returns the singleton instance of this formatter.
static function this_type get_instance()
(STATIC) Returns the singleton instance of this formatter.
static function this_type get_instance()
(STATIC) Returns the singleton instance of this comparator.
static function this_type get_instance()
(STATIC) Returns the singleton instance of this formatter.
static function string_formatter get_instance()
(STATIC) Returns the singleton instance of this comparator.
static function this_type get_instance()
(PURE) (VIRTUAL) Returns an iterator over the elements contained in this collection.
pure virtual function iterator#( T ) get_iterator()
(VIRTUAL) Returns an iterator over the elements in this deque.
virtual function iterator#( T ) get_iterator()
(VIRTUAL) Returns an iterator over the elements in this route.
virtual function iterator#( T ) get_iterator()
(VIRTUAL) Returns an iterator over the elements in this set.
virtual function iterator#( T ) get_iterator()
(VIRTUAL) Returns an iterator over the elements in this tree.
virtual function iterator#( T ) get_iterator()
(VIRTUAL) Retrieves the tail of the deque and remove the element.
virtual function bit get_last( ref T e )
(VIRTUAL) Returns the last route node in the breadth-first order.
virtual function route_node_type get_last_node()
(VIRTUAL) Returns the last tree node in the breadth-first order.
virtual function tree_node_type get_last_node()
(VIRTUAL) Returns the human-readable location string of this node from the root.
virtual function string get_location_name( tree_node_type tn )
(VIRTUAL) Returns the number of (immediate) children of this tree node.
virtual function int get_num_children()
(VIRTUAL) Returns the number of to_nodes.
virtual function int get_num_of_to_nodes()
Returns the remaining time to ring.
function time get_remaining()
Returns the current state of the timer.
function state_e get_state()
(VIRTUAL) Grafts the given tree_node (and its children) to the tree as the child of the specified parent.
virtual function tree_node_type graft( tree_node_type tn, tree_node_type parent = null )
(VIRTUAL) Grafts the given tree node (and its children) as a new child.
virtual function tree_node_type graft( tree_node_type tn )
(VIRTUAL) Returns 1 if x is greater than y.
virtual function bit gt( T x, T y )
(VIRTUAL) Returns 1 if x is greater than y.
virtual function bit gt( T x, T y )
Returns 1 if this object is greater than the specified pair.
function bit gt( const ref this_type p )
Returns 1 if this object is greater than the specified tuple.
function bit gt( const ref this_type t )
(VIRTUAL) Returns if this tree node has at least one child.
virtual function bit has_child()
(VIRTUAL) Returns 1 if the iterator has more elements.
virtual function bit has_next()
(VIRTUAL) Returns 1 if the iterator has more elements.
virtual function bit has_next()
(PURE) (VIRTUAL) Returns 1 if the iteration has more elements.
pure virtual function bit has_next()
(VIRTUAL) Returns 1 if the iterator has more elements.
virtual function bit has_next()
(VIRTUAL) Returns 1 if the iterator has more elements.
virtual function bit has_next()
(VIRTUAL) Returns 1 if the iterator has more elements.
virtual function bit has_next()
(VIRTUAL) Returns if this route node has at least one to_nodes.
virtual function bit has_to_nodes()
(STATIC) Returns the hash value of the given string.
static function int hash( string s )
(STATIC) Returns the index of the first occurrence of the specified substring in the given string within the optionally specified range.
static function int index( string s, string sub, int start_pos = 0, int end_pos = -1 )
(STATIC) Initializes the each element of the given dynamic array to the specified value.
static function void init( ref da_type da, input T val )
(STATIC) Initializes the each element of the given packed array to the specified value.
static function void init( ref pa_type pa, input T val )
(STATIC) Initializes the each element of the given queue to the specified value.
static function void init( ref q_type q, input T val )
(STATIC) Initializes the each element of the given unpacked array to the specified value.
static function void init( ref ua_type ua, input T val )
(STATIC) Returns a copy of the given string with the specified substring inserted at the specified position.
static function string insert( string s, string sub, int start_pos = 0 )
(STATIC) Returns 1 if all characters in the given string are alphabetic.
static function bit is_alpha( string s )
(STATIC) Returns 1 if all characters in the given string are digits.
static function bit is_digit( string s )
(VIRTUAL) Returns 1 if this collection contains no elements.
virtual function bit is_empty()
(VIRTUAL) Returns 1 if this route contains no elements.
virtual function bit is_empty()
(VIRTUAL) Returns 1 if this set contains no elements.
virtual function bit is_empty()
(VIRTUAL) Returns 1 if this tree contains no elements.
virtual function bit is_empty()
(STATIC) Returns 1 if all cased characters in the given string are lowercase.
static function bit is_lower( string s )
Returns 1 if the timer is currently paused.
function bit is_paused()
(STATIC) Returns 1 if all characters in the given string are printable.
static function bit is_printable( string s )
Returns 1 if the timer is currently running.
function bit is_running()
(STATIC) Returns 1 if the given string is bit, logic, or reg.
static function bit is_single_bit_type( string s )
(STATIC) Returns 1 if all characters in the given string are whitespace characters: a space (“ “), a tab (\t), or a newline (\n).
static function bit is_space( string s )
Returns 1 if the timer is currently stopped.
function bit is_stopped()
(STATIC) Returns 1 if all cased characters in the given string are uppercase.
static function bit is_upper( string s )