static create()
Creates the `Number` instance with the given primitive value
Number.create()
Number.create()
The static create()
method creates the Number
instance with the given primitive value
.
public static create<Value extends number>(value: Value): Number<Value> {
return new this(value);
}
Generic type variables
A generic type variable indicates captured type of the supplied value
via the return type.
Parameters
value:
Value
value:
Value
The number of generic type variable Value
to set with a new instance.
Return type
The return type is the Number
primitive wrapper object that takes the generic type variable Value
.
Returns
The return value is the Number
instance with the primitive value of the given value
.
Example usage
// Example usage.
import { Number } from '@angular-package/range';
// Returns Number {27} of Number<27>.
Number.create(27);
Last updated