| D | |
| da_to_pa, packed_array | |
| da_to_q | |
| da_to_ua | |
| delete, text | |
| disconnect, route_node | |
| dump, network | |
| E | |
| ends_with, text | |
| eq | |
| equals, set_base | |
| extract | |
| F | |
| find_any, text | |
| from_dynamic_array | |
| from_queue | |
| from_unpacked_array |
(STATIC) Converts a dynamic array of type T to a packed array of the same type.
static function void da_to_pa( const ref da_type da, ref pa_type pa, input bit reverse = 0 )
(STATIC) Converts a dynamic array of type T to a queue of the same type.
static function void da_to_q( const ref da_type da, ref q_type q, input bit reverse = 0 )
(STATIC) Converts a dynamic array of type T to a queue of the same type.
static function void da_to_q( const ref da_type da, ref q_type q, input bit reverse = 0 )
(STATIC) Converts a dynamic array of type T to an unpacked array of the same type.
static function void da_to_ua( const ref da_type da, ref ua_type ua, input bit reverse = 0 )
(STATIC) Converts a dynamic array of type T to an unpacked array of the same type.
static function void da_to_ua( const ref da_type da, ref ua_type ua, input bit reverse = 0 )
(STATIC) Returns a copy of the given string with the specified string removed.
static function string delete( string s, string sub, int count = -1 )
(VIRTUAL) Removes the specified route node (and its connections) from this node.
virtual function route_node_type disconnect( int index = 0 )
(STATIC) Stores a network transaction to the file specified by the idx using the Wireshark hex format.
static function void dump( string desc, int idx = 0 )
(STATIC) Returns 1 if the given string ends with one of the specified suffixes.
static function bit ends_with( string s, string_q suffixes, int start_pos = 0, int end_pos = -1 )
(VIRTUAL) Returns 1 if two inputs are equal.
virtual function bit eq( T x, T y )
Returns 1 if this object is equal to the specified pair.
function bit eq( const ref this_type p )
(VIRTUAL) Returns 1 if two pairs are equal.
virtual function bit eq( T x, T y )
Returns 1 if this object is equal to the specified tuple.
function bit eq( const ref this_type t )
(VIRTUAL) Returns 1 if two tuples are equal.
virtual function bit eq( T x, T y )
(VIRTUAL) Returns 1 if the given collection equals this set.
virtual function bit equals( collection#(T) c )
(STATIC) Returns a new dynamic array by extracting a part of the given dynamic array.
static function da_type extract( da_type da, int from_index = 0, int to_index = -1 )
(STATIC) Returns a new queue by extracting a part of the given queue.
static function q_type extract( q_type q, int from_index = 0, int to_index = -1 )
(STATIC) Returns the lowest index in the given string where each specified substring is found.
static function int find_any( string s, string_q subs, int start_pos = 0, int end_pos = -1 )
(STATIC) Converts a dynamic array of type T to a packed array of the same type.
static function pa_type from_dynamic_array( const ref da_type da, input bit reverse = 0 )
(STATIC) Converts a dynamic array of type T to a queue of the same type.
static function q_type from_dynamic_array( const ref da_type da, input bit reverse = 0 )
(STATIC) Converts a dynamic array of type T to un unpacked array of the same type.
static function ua_type from_dynamic_array( const ref da_type da, input bit reverse = 0 )
(STATIC) Converts a queue of type T to a dynamic array of the same type.
static function da_type from_queue( const ref q_type q, input bit reverse = 0 )
(STATIC) Converts a queue of type T to a packed array of the same type.
static function pa_type from_queue( const ref q_type q, input bit reverse = 0 )
(STATIC) Converts a queue of type T to an unpacked array of the same type.
static function ua_type from_queue( const ref q_type q, input bit reverse = 0 )
(STATIC) Converts an unpacked array of type T to a dynamic array of the same type.
static function da_type from_unpacked_array( const ref ua_type ua, input bit reverse = 0 )
(STATIC) Converts an unpacked array of type T to a packed array of the same type.
static function pa_type from_unpacked_array( const ref ua_type ua, input bit reverse = 0 )
(STATIC) Converts an unpacked array of type T to a queue of the same type.
static function q_type from_unpacked_array( const ref ua_type ua, input bit reverse = 0 )