Bound<T>.from constructor

Bound<T>.from(
  1. Bound<T>? bound
)

Implementation

Bound.from(Bound<T>? bound)
    : type = bound?.type ?? BoundType.unbounded,
      value = bound?.value;