operator <= method - num class - dart:core library (original) (raw)

description

operator <= abstract method

bool operator <=(

  1. num other )

Whether this number is numerically smaller than or equal to other.

Returns true if this number is smaller than or equal to other. Returns false if this number is greater than otheror if either value is a NaN value like double.nan.

Implementation

bool operator <=(num other);