InformationSize.fromNibbles constructor

InformationSize.fromNibbles(
  1. Rational nibbles
)

Creates an InformationSize representing the specified number of nibbles.

Implementation

factory InformationSize.fromNibbles(Rational nibbles) =>
    InformationSize.fromUnits(InformationUnit.nibble, nibbles);