Skip to content

EachOps

extension EachOps on num

Extension methods for constructing Each values from num.

Properties

dozen extension no setter

Each get dozen

Creates an Each of this value in dozens.

Available on num, provided by the EachOps extension

Implementation
dart
Each get dozen => Each.dozen(this);

each extension no setter

Each get each

Creates an Each of this value as individual items.

Available on num, provided by the EachOps extension

Implementation
dart
Each get each => Each.each(this);

greatGross extension no setter

Each get greatGross

Creates an Each of this value in great gross.

Available on num, provided by the EachOps extension

Implementation
dart
Each get greatGross => Each.greatGross(this);

gross extension no setter

Each get gross

Creates an Each of this value in gross.

Available on num, provided by the EachOps extension

Implementation
dart
Each get gross => Each.gross(this);

score extension no setter

Each get score

Creates an Each of this value in scores.

Available on num, provided by the EachOps extension

Implementation
dart
Each get score => Each.score(this);