PHP Interface Cassandra\Numeric

See also: Bigint
See also: Decimal
See also: Float
See also: Varint
Afficher le fichier Open project: datastax/php-driver

Méthodes publiques

Méthode Description
abs ( ) : cassandra\Numeric
add ( cassandra\Numeric $addend ) : cassandra\Numeric
div ( cassandra\Numeric $divisor ) : cassandra\Numeric
mod ( cassandra\Numeric $divisor ) : cassandra\Numeric
mul ( cassandra\Numeric $multiplier ) : cassandra\Numeric
neg ( ) : cassandra\Numeric
sqrt ( ) : cassandra\Numeric
sub ( cassandra\Numeric $subtrahend ) : cassandra\Numeric
toDouble ( ) : float
toInt ( ) : integer

Method Details

abs() public méthode

public abs ( ) : cassandra\Numeric
Résultat cassandra\Numeric absolute value

add() public méthode

public add ( cassandra\Numeric $addend ) : cassandra\Numeric
$addend cassandra\Numeric a number to add to this one
Résultat cassandra\Numeric sum

div() public méthode

public div ( cassandra\Numeric $divisor ) : cassandra\Numeric
$divisor cassandra\Numeric a number to divide this one by
Résultat cassandra\Numeric quotient

mod() public méthode

public mod ( cassandra\Numeric $divisor ) : cassandra\Numeric
$divisor cassandra\Numeric a number to divide this one by
Résultat cassandra\Numeric remainder

mul() public méthode

public mul ( cassandra\Numeric $multiplier ) : cassandra\Numeric
$multiplier cassandra\Numeric a number to multiply this one by
Résultat cassandra\Numeric product

neg() public méthode

public neg ( ) : cassandra\Numeric
Résultat cassandra\Numeric negative value

sqrt() public méthode

public sqrt ( ) : cassandra\Numeric
Résultat cassandra\Numeric square root

sub() public méthode

public sub ( cassandra\Numeric $subtrahend ) : cassandra\Numeric
$subtrahend cassandra\Numeric a number to subtract from this one
Résultat cassandra\Numeric difference

toDouble() public méthode

public toDouble ( ) : float
Résultat float this number as float

toInt() public méthode

public toInt ( ) : integer
Résultat integer this number as int