TypeAttributes extension type
Provides information about a type.
- on
- Implemented types
- Available extensions
Constructors
- TypeAttributes.new(int _)
-
const
Properties
-
address
↔ Pointer<
Never> -
Available on int, provided by the IntAddress extension
The memory address of the underlying data.getter/setter pair - bitLength → int
-
Returns the minimum number of bits required to store this integer.
no setterinherited
- hashCode → int
-
Returns a hash code for a numerical value.
no setterinherited
- isEven → bool
-
Returns true if and only if this integer is even.
no setterinherited
- isFinite → bool
-
Whether this number is finite.
no setterinherited
- isInfinite → bool
-
Whether this number is positive infinity or negative infinity.
no setterinherited
- isNaN → bool
-
Whether this number is a Not-a-Number value.
no setterinherited
- isNegative → bool
-
Whether this number is negative.
no setterinherited
- isOdd → bool
-
Returns true if and only if this integer is odd.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- sign → int
-
Returns the sign of this integer.
no setterinherited
- toJS → JSNumber
-
Available on num, provided by the NumToJSExtension extension
Converts this num to a JSNumber.no setter
Methods
-
abs(
) → int -
Returns the absolute value of this integer.
inherited
-
ceil(
) → int -
Returns
this
.inherited -
ceilToDouble(
) → double -
Returns
this.toDouble()
.inherited -
clamp(
num lowerLimit, num upperLimit) → num -
Returns this num clamped to be in the range
lowerLimit
-upperLimit
.inherited -
compareTo(
num other) → int -
Compares this to
other
.inherited -
floor(
) → int -
Returns
this
.inherited -
floorToDouble(
) → double -
Returns
this.toDouble()
.inherited -
gcd(
int other) → int -
Returns the greatest common divisor of this integer and
other
.inherited -
has(
TypeAttributes other) → bool -
Whether this instance has all the bit fields specified in
other
. -
modInverse(
int modulus) → int -
Returns the modular multiplicative inverse of this integer
modulo
modulus
.inherited -
modPow(
int exponent, int modulus) → int -
Returns this integer to the power of
exponent
modulomodulus
.inherited -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
remainder(
num other) → num -
The remainder of the truncating division of
this
byother
.inherited -
round(
) → int -
Returns
this
.inherited -
roundToDouble(
) → double -
Returns
this.toDouble()
.inherited -
toDouble(
) → double -
This number as a double.
inherited
-
toInt(
) → int -
Truncates this num to an integer and returns the result as an int.
inherited
-
toRadixString(
int radix) → String -
Converts this int to a string representation in the given
radix
.inherited -
toSigned(
int width) → int -
Returns the least significant
width
bits of this integer, extending the highest retained bit to the sign. This is the same as truncating the value to fit inwidth
bits using an signed 2-s complement representation. The returned value has the same bit value in all positions higher thanwidth
.inherited -
toString(
) → String -
Returns a string representation of this integer.
inherited
-
toStringAsExponential(
[int? fractionDigits]) → String -
An exponential string-representation of this number.
inherited
-
toStringAsFixed(
int fractionDigits) → String -
A decimal-point string-representation of this number.
inherited
-
toStringAsPrecision(
int precision) → String -
A string representation with
precision
significant digits.inherited -
toUnsigned(
int width) → int -
Returns the least significant
width
bits of this integer as a non-negative number (i.e. unsigned representation). The returned value has zeros in all bit positions higher thanwidth
.inherited -
truncate(
) → int -
Returns
this
.inherited -
truncateToDouble(
) → double -
Returns
this.toDouble()
.inherited
Operators
-
operator %(
num other) → num -
Euclidean modulo of this number by
other
.inherited -
operator &(
TypeAttributes other) → TypeAttributes -
Bit-wise and operator.
override
-
operator *(
num other) → num -
Multiplies this number by
other
.inherited -
operator +(
num other) → num -
Adds
other
to this number.inherited -
operator -(
num other) → num -
Subtracts
other
from this number.inherited -
operator /(
num other) → double -
Divides this number by
other
.inherited -
operator <(
num other) → bool -
Whether this number is numerically smaller than
other
.inherited -
operator <<(
int shiftAmount) → int -
Shift the bits of this integer to the left by
shiftAmount
.inherited -
operator <=(
num other) → bool -
Whether this number is numerically smaller than or equal to
other
.inherited -
operator ==(
Object other) → bool -
Test whether this value is numerically equal to
other
.inherited -
operator >(
num other) → bool -
Whether this number is numerically greater than
other
.inherited -
operator >=(
num other) → bool -
Whether this number is numerically greater than or equal to
other
.inherited -
operator >>(
int shiftAmount) → int -
Shift the bits of this integer to the right by
shiftAmount
.inherited -
operator >>>(
int shiftAmount) → int -
Bitwise unsigned right shift by
shiftAmount
bits.inherited -
operator ^(
int other) → int -
Bit-wise exclusive-or operator.
inherited
-
operator unary-(
) → int -
Return the negative value of this integer.
inherited
-
operator |(
TypeAttributes other) → TypeAttributes -
Bit-wise or operator.
override
-
operator ~(
) → int -
The bit-wise negate operator.
inherited
-
operator ~/(
num other) → int -
Truncating division operator.
inherited
Constants
- abstract → const TypeAttributes
- The type is abstract.
- ansiClass → const TypeAttributes
- LPSTR is interpreted as ANSI.
- autoClass → const TypeAttributes
- LPSTR is interpreted automatically.
- autoLayout → const TypeAttributes
- beforeFieldInit → const TypeAttributes
- Initialize the class before first static field access.
- class$ → const TypeAttributes
- The type is a class.
- classSemanticsMask → const TypeAttributes
- Specifies class semantics information; the current class is contextful (else agile).
- customFormatClass → const TypeAttributes
- A non-standard encoding specified by customStringFormatMask.
- customStringFormatMask → const TypeAttributes
- Use this mask to retrieve non-standard encoding information for native interop.
- explicitLayout → const TypeAttributes
- The class fields are laid out at the specified offsets.
- hasSecurity → const TypeAttributes
- Type has security associate with it.
- import → const TypeAttributes
- The class or interface is imported from another module.
- interface → const TypeAttributes
- The type is an interface.
- isTypeForwarder → const TypeAttributes
- This ExportedType entry is a type forwarder.
- layoutMask → const TypeAttributes
- Specifies class layout information.
- nestedAssembly → const TypeAttributes
- The class is nested with assembly visibility, and is thus accessible only by methods within its assembly.
- nestedFamANDAssem → const TypeAttributes
- The class is nested with assembly and family visibility, and is thus accessible only by methods lying in the intersection of its family and assembly.
- nestedFamily → const TypeAttributes
- The class is nested with family visibility, and is thus accessible only by methods within its own type and any derived types.
- nestedFamORAssem → const TypeAttributes
- The class is nested with family or assembly visibility, and is thus accessible only by methods lying in the union of its family and assembly.
- nestedPrivate → const TypeAttributes
- The class is nested with private visibility.
- nestedPublic → const TypeAttributes
- The class is nested with public visibility.
- notPublic → const TypeAttributes
- The class is not public.
- public → const TypeAttributes
- The class is public.
- rtSpecialName → const TypeAttributes
- CLI provides 'special' behavior, depending upon the name of the Type.
- sealed → const TypeAttributes
- The class is concrete and cannot be extended.
- sequentialLayout → const TypeAttributes
- The class fields are laid out sequentially, in the order that the fields were emitted to the metadata.
- serializable → const TypeAttributes
- Reserved.
- specialName → const TypeAttributes
- The class is special in a way denoted by the name.
- stringFormatMask → const TypeAttributes
- Use this mask to retrieve string information for native interop.
- unicodeClass → const TypeAttributes
- LPSTR is interpreted as Unicode.
- visibilityMask → const TypeAttributes
- Specifies type visibility information.
- windowsRuntime → const TypeAttributes
- Specifies a Windows Runtime type.