★ Constructor
Creates the Maximum instance of the given primitive value
Maximum()
Maximum()constructor(value: Value) {
super(value);
}Parameters
ParametersExample usage
// Example usage.
import { Maximum } from '@angular-package/range';
// Define constant `id`.
const id = 390;
// Returns Maximum {390} of Maximum<390>.
new Maximum(id);Last updated