메소드 | 설명 | |
---|---|---|
Decode ( string val, long radix, double &rv ) : void | ||
Decode ( string val, long radix, double &rv, bool sym ) : void | ||
Decode ( string val, long radix, long &rv ) : void | ||
Decode ( string val, long radix, long &rv, bool sym ) : void |
Decoder for a string to a long with the base [radix]. if sym is true the number will be converted from a generic symbolic notation.
|
|
Encode ( double x, long radix ) : string | ||
Encode ( double x, long radix, bool sym ) : string | ||
Encode ( long x, long radix ) : string | ||
Encode ( long x, long radix, bool sym ) : string |
Encoder for a long to a string with the base [radix]. if sym is true the number will be converted to a generic symbolic notation.
|
|
Spaces ( string val, int nr ) : string | ||
Spaces ( string val, int nr, char sep ) : string |
메소드 | 설명 | |
---|---|---|
CheckArg ( long radix, bool sym ) : void |
CheckArg checks the arguments for the encoder and decoder calls
|
public static Decode ( string val, long radix, double &rv ) : void | ||
val | string | |
radix | long | |
rv | double | |
리턴 | void |
public static Decode ( string val, long radix, double &rv, bool sym ) : void | ||
val | string | |
radix | long | |
rv | double | |
sym | bool | |
리턴 | void |
public static Decode ( string val, long radix, long &rv ) : void | ||
val | string | |
radix | long | |
rv | long | |
리턴 | void |
public static Decode ( string val, long radix, long &rv, bool sym ) : void | ||
val | string | |
radix | long | |
rv | long | |
sym | bool | |
리턴 | void |
public static Encode ( double x, long radix ) : string | ||
x | double | |
radix | long | |
리턴 | string |
public static Encode ( double x, long radix, bool sym ) : string | ||
x | double | |
radix | long | |
sym | bool | |
리턴 | string |
public static Encode ( long x, long radix ) : string | ||
x | long | |
radix | long | |
리턴 | string |
public static Encode ( long x, long radix, bool sym ) : string | ||
x | long | |
radix | long | |
sym | bool | |
리턴 | string |
public static Spaces ( string val, int nr ) : string | ||
val | string | |
nr | int | |
리턴 | string |
public static Spaces ( string val, int nr, char sep ) : string | ||
val | string | |
nr | int | |
sep | char | |
리턴 | string |