Module Buffer.Float
- val set : t -> int -> float -> unit
- set t off valuewill set the- valueat offset- offin the buffer.
- val get : t -> int -> float
- get t offwill return the value at offset- off.
- val length : t -> int
- Return the number of elements in the buffer. 
- val create : int -> t
- Creates a new buffer. The buffer is initialized with zeros. 
- val blit : src:t -> s_off:int -> dst:t -> d_off:int -> len:int -> unit
- Copy one buffer into another. - parameter src
- The buffer to copy from. 
 - parameter s_off
- The offset to start copying from the - srcbuffer.
 - parameter dst
- The buffer to copy to. 
 - parameter d_off
- The offset to start copying to the - dstbuffer.
 - parameter len
- The number of values to copy. 
 
- val fill : t -> float -> unit
- Fill the buffer with the given value.