The dynamic array of file descriptors.
static integer fds[]
The enumerated type of foreground colors.
typedef enum { FG_BLACK = 30, FG_RED = 31, FG_GREEN = 32, FG_YELLOW = 33, FG_BLUE = 34, FG_MAGENTA = 35, FG_CYAN = 36, FG_WHITE = 37 } fg_color_e
The fifth value inside the tuple.
T5 fifth
(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 )
The first value inside the pair.
T1 first
The first value inside the tuple.
T1 first
(PROTECTED) An object that provides a function to convert the element of type T to a string.
protected formatter#( T ) fmtr
(SINGLETON) Provides a strategy to convert an object of type T into a string.
class formatter #( type T = int )
The fourth value inside the tuple.
T4 fourth
(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 )
The nodes this node is connected from.
route_node_type from_nodes[$]
(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 )