Float32x4Queue.fromList constructor

Float32x4Queue.fromList(
  1. List<Float32x4> elements
)

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

Implementation

factory Float32x4Queue.fromList(List<Float32x4> elements) =>
    Float32x4Queue(elements.length)..addAll(elements);