Float32Queue.fromList constructor

Float32Queue.fromList(
  1. List<double> elements
)

Creates a Float32Queue with the same length and contents as elements.

Implementation

factory Float32Queue.fromList(List<double> elements) =>
    Float32Queue(elements.length)..addAll(elements);