C# Class Fan.Sys.FanFloat

FanDouble defines the methods for sys::Float. The actual class used for representation is System.Double.
Afficher le fichier Open project: xored/f4 Class Usage Examples

Méthodes publiques

Свойство Type Description
m_NaNStr string
m_NegInfStr string
m_PosInfStr string
m_defVal double
m_e double
m_nan double
m_negInf double
m_pi double
m_posInf double
m_zero double

Méthodes publiques

Méthode Description
abs ( double self ) : double
acos ( double self ) : double
approx ( double self, double that ) : bool
approx ( double self, double that, Double tolerance ) : bool
asin ( double self ) : double
atan ( double self ) : double
atan2 ( double y, double x ) : double
bits ( double self ) : long
bits32 ( double self ) : long
ceil ( double self ) : double
compare ( double self, object obj ) : long
cos ( double self ) : double
cosh ( double self ) : double
decrement ( double self ) : double
div ( double self, double x ) : double
divDecimal ( double self, BigDecimal x ) : BigDecimal
divInt ( double self, long x ) : double
encode ( double self, ObjEncoder @out ) : void
equals ( double self, object obj ) : bool
exp ( double self ) : double
floor ( double self ) : double
fromStr ( string s ) : Double
fromStr ( string s, bool check ) : Double
hash ( double self ) : long
increment ( double self ) : double
isNaN ( double self ) : bool
log ( double self ) : double
log10 ( double self ) : double
makeBits ( long bits ) : double
makeBits32 ( long bits ) : double
max ( double self, double that ) : double
min ( double self, double that ) : double
minus ( double self, double x ) : double
minusDecimal ( double self, BigDecimal x ) : BigDecimal
minusInt ( double self, long x ) : double
mod ( double self, double x ) : double
modDecimal ( double self, BigDecimal x ) : BigDecimal
modInt ( double self, long x ) : double
mult ( double self, double x ) : double
multDecimal ( double self, BigDecimal x ) : BigDecimal
multInt ( double self, long x ) : double
negate ( double self ) : double
plus ( double self, double x ) : double
plusDecimal ( double self, BigDecimal x ) : BigDecimal
plusInt ( double self, long x ) : double
pow ( double self, double pow ) : double
random ( ) : double
round ( double self ) : double
sin ( double self ) : double
sinh ( double self ) : double
sqrt ( double self ) : double
tan ( double self ) : double
tanh ( double self ) : double
toCode ( double self ) : string
toDegrees ( double self ) : double
toLocale ( double self ) : string
toLocale ( double self, string pattern ) : string
toRadians ( double self ) : double
toStr ( double self ) : string
type ( double self ) : Type

Method Details

abs() public static méthode

public static abs ( double self ) : double
self double
Résultat double

acos() public static méthode

public static acos ( double self ) : double
self double
Résultat double

approx() public static méthode

public static approx ( double self, double that ) : bool
self double
that double
Résultat bool

approx() public static méthode

public static approx ( double self, double that, Double tolerance ) : bool
self double
that double
tolerance Double
Résultat bool

asin() public static méthode

public static asin ( double self ) : double
self double
Résultat double

atan() public static méthode

public static atan ( double self ) : double
self double
Résultat double

atan2() public static méthode

public static atan2 ( double y, double x ) : double
y double
x double
Résultat double

bits() public static méthode

public static bits ( double self ) : long
self double
Résultat long

bits32() public static méthode

public static bits32 ( double self ) : long
self double
Résultat long

ceil() public static méthode

public static ceil ( double self ) : double
self double
Résultat double

compare() public static méthode

public static compare ( double self, object obj ) : long
self double
obj object
Résultat long

cos() public static méthode

public static cos ( double self ) : double
self double
Résultat double

cosh() public static méthode

public static cosh ( double self ) : double
self double
Résultat double

decrement() public static méthode

public static decrement ( double self ) : double
self double
Résultat double

div() public static méthode

public static div ( double self, double x ) : double
self double
x double
Résultat double

divDecimal() public static méthode

public static divDecimal ( double self, BigDecimal x ) : BigDecimal
self double
x BigDecimal
Résultat BigDecimal

divInt() public static méthode

public static divInt ( double self, long x ) : double
self double
x long
Résultat double

encode() public static méthode

public static encode ( double self, ObjEncoder @out ) : void
self double
@out Fanx.Serial.ObjEncoder
Résultat void

equals() public static méthode

public static equals ( double self, object obj ) : bool
self double
obj object
Résultat bool

exp() public static méthode

public static exp ( double self ) : double
self double
Résultat double

floor() public static méthode

public static floor ( double self ) : double
self double
Résultat double

fromStr() public static méthode

public static fromStr ( string s ) : Double
s string
Résultat Double

fromStr() public static méthode

public static fromStr ( string s, bool check ) : Double
s string
check bool
Résultat Double

hash() public static méthode

public static hash ( double self ) : long
self double
Résultat long

increment() public static méthode

public static increment ( double self ) : double
self double
Résultat double

isNaN() public static méthode

public static isNaN ( double self ) : bool
self double
Résultat bool

log() public static méthode

public static log ( double self ) : double
self double
Résultat double

log10() public static méthode

public static log10 ( double self ) : double
self double
Résultat double

makeBits() public static méthode

public static makeBits ( long bits ) : double
bits long
Résultat double

makeBits32() public static méthode

public static makeBits32 ( long bits ) : double
bits long
Résultat double

max() public static méthode

public static max ( double self, double that ) : double
self double
that double
Résultat double

min() public static méthode

public static min ( double self, double that ) : double
self double
that double
Résultat double

minus() public static méthode

public static minus ( double self, double x ) : double
self double
x double
Résultat double

minusDecimal() public static méthode

public static minusDecimal ( double self, BigDecimal x ) : BigDecimal
self double
x BigDecimal
Résultat BigDecimal

minusInt() public static méthode

public static minusInt ( double self, long x ) : double
self double
x long
Résultat double

mod() public static méthode

public static mod ( double self, double x ) : double
self double
x double
Résultat double

modDecimal() public static méthode

public static modDecimal ( double self, BigDecimal x ) : BigDecimal
self double
x BigDecimal
Résultat BigDecimal

modInt() public static méthode

public static modInt ( double self, long x ) : double
self double
x long
Résultat double

mult() public static méthode

public static mult ( double self, double x ) : double
self double
x double
Résultat double

multDecimal() public static méthode

public static multDecimal ( double self, BigDecimal x ) : BigDecimal
self double
x BigDecimal
Résultat BigDecimal

multInt() public static méthode

public static multInt ( double self, long x ) : double
self double
x long
Résultat double

negate() public static méthode

public static negate ( double self ) : double
self double
Résultat double

plus() public static méthode

public static plus ( double self, double x ) : double
self double
x double
Résultat double

plusDecimal() public static méthode

public static plusDecimal ( double self, BigDecimal x ) : BigDecimal
self double
x BigDecimal
Résultat BigDecimal

plusInt() public static méthode

public static plusInt ( double self, long x ) : double
self double
x long
Résultat double

pow() public static méthode

public static pow ( double self, double pow ) : double
self double
pow double
Résultat double

random() public static méthode

public static random ( ) : double
Résultat double

round() public static méthode

public static round ( double self ) : double
self double
Résultat double

sin() public static méthode

public static sin ( double self ) : double
self double
Résultat double

sinh() public static méthode

public static sinh ( double self ) : double
self double
Résultat double

sqrt() public static méthode

public static sqrt ( double self ) : double
self double
Résultat double

tan() public static méthode

public static tan ( double self ) : double
self double
Résultat double

tanh() public static méthode

public static tanh ( double self ) : double
self double
Résultat double

toCode() public static méthode

public static toCode ( double self ) : string
self double
Résultat string

toDegrees() public static méthode

public static toDegrees ( double self ) : double
self double
Résultat double

toLocale() public static méthode

public static toLocale ( double self ) : string
self double
Résultat string

toLocale() public static méthode

public static toLocale ( double self, string pattern ) : string
self double
pattern string
Résultat string

toRadians() public static méthode

public static toRadians ( double self ) : double
self double
Résultat double

toStr() public static méthode

public static toStr ( double self ) : string
self double
Résultat string

type() public static méthode

public static type ( double self ) : Type
self double
Résultat Type

Property Details

m_NaNStr public_oe static_oe property

public static string m_NaNStr
Résultat string

m_NegInfStr public_oe static_oe property

public static string m_NegInfStr
Résultat string

m_PosInfStr public_oe static_oe property

public static string m_PosInfStr
Résultat string

m_defVal public_oe static_oe property

public static double m_defVal
Résultat double

m_e public_oe static_oe property

public static double m_e
Résultat double

m_nan public_oe static_oe property

public static double m_nan
Résultat double

m_negInf public_oe static_oe property

public static double m_negInf
Résultat double

m_pi public_oe static_oe property

public static double m_pi
Résultat double

m_posInf public_oe static_oe property

public static double m_posInf
Résultat double

m_zero public_oe static_oe property

public static double m_zero
Résultat double