Fixed

Fixed Class

Constructors

this
this(V i)

Create a new Fixed, given an integral

this
this(T i)

Create a new Fixed give a floating point number

this
this(Range s, bool round)

Create a new Fixed struct given a string. If round is true, then the number is rounded to the nearest signficiant digit.

Members

Functions

opAssign
Fixed opAssign(Fixed p)
Undocumented in source. Be warned that the author may not have intended to support it.
opAssign
Fixed opAssign(T n)
Undocumented in source. Be warned that the author may not have intended to support it.
opAssign
Fixed opAssign(string s)
Undocumented in source. Be warned that the author may not have intended to support it.
opBinary
auto opBinary(Fixed!(S, W, H) rhs)
opBinary
auto opBinary(Rhs rhs)
opBinaryRight
auto opBinaryRight(Lhs lhs)
opCast
T opCast()
Undocumented in source. Be warned that the author may not have intended to support it.
opCast
T opCast()
Undocumented in source. Be warned that the author may not have intended to support it.
opCast
T opCast()
Undocumented in source. Be warned that the author may not have intended to support it.
opCmp
int opCmp(Fixed other)
Undocumented in source. Be warned that the author may not have intended to support it.
opCmp
int opCmp(T other)
Undocumented in source. Be warned that the author may not have intended to support it.
opEquals
bool opEquals(Fixed other)
Undocumented in source. Be warned that the author may not have intended to support it.
opEquals
bool opEquals(Fixed!point other)
Undocumented in source. Be warned that the author may not have intended to support it.
opEquals
bool opEquals(T other)
Undocumented in source. Be warned that the author may not have intended to support it.
opOpAssign
Fixed opOpAssign(T n)
Undocumented in source. Be warned that the author may not have intended to support it.
opUnary
Fixed opUnary()
Undocumented in source. Be warned that the author may not have intended to support it.
opUnary
Fixed opUnary()
Undocumented in source. Be warned that the author may not have intended to support it.
toHash
size_t toHash()
Undocumented in source. Be warned that the author may not have intended to support it.
toString
string toString()
Undocumented in source. Be warned that the author may not have intended to support it.
toString
void toString(Out outRange)
Undocumented in source. Be warned that the author may not have intended to support it.

Manifest constants

factor
enum factor;

Factor of the scaling

Static functions

fromString
Fixed fromString(string v)

Creating Fixed from a string, needed by vibed: http://vibed.org/api/vibe.data.serialization/isStringSerializable

make
Fixed make(V v)

Direct construction of a Fixed struct

Static variables

max
Fixed max;

Largest Fixed

min
Fixed min;

Smalest Fixed

Variables

value
V value;

Value of the Fixed

Meta