package ke
Library
Module
Module type
Parameter
Class
Class type
type ('a, 'b) bigarray = ('a, 'b, Bigarray.c_layout) Bigarray.Array1.t
The type of the internal bigarray of t
.
val push_exn :
('a, 'b) t ->
blit:('src, ('a, 'b) bigarray) blit ->
length:'src length ->
?off:int ->
?len:int ->
'src ->
('a, 'b) bigarray list
push_exn q ~blit ~length ?off ?len src
blits elements in src
to the given queue q
at the end (like a fast iterative R.push
). Default value of off
is 0
. Default value of len
is length src - off
. It returns a list of internal bigarray
s which contain dst
. If the given q
does not have enough free space to write src
, it raises Full
and the given queue is unchanged.
val push :
('a, 'b) t ->
blit:('src, ('a, 'b) bigarray) blit ->
length:'src length ->
?off:int ->
?len:int ->
'src ->
('a, 'b) bigarray list option
Same as push_exn
but it returns None
if it fails.
val keep_exn :
('a, 'b) t ->
blit:(('a, 'b) bigarray, 'dst) blit ->
length:'dst length ->
?off:int ->
?len:int ->
'dst ->
unit
keep_exn q ~blit ~length ?off ?len dst
blits elements of the given queue q
in dst
from the front to the end of dst
(like a fast iterative R.pop_exn
). Default value of off
is 0
. Default value of len
is length dst - off
. If the given q
does not have enough elements to write on dst
, it raises Empty
. In any case, the given queue is unchanged.
val keep :
('a, 'b) t ->
blit:(('a, 'b) bigarray, 'dst) blit ->
length:'dst length ->
?off:int ->
?len:int ->
'dst ->
unit option
Same as keep_exn
but if it fails, it returns None
.
val peek : ('a, 'b) t -> ('a, 'b, Bigarray.c_layout) Bigarray.Array1.t list
Returns a sub-part of available to read payloads.
val unsafe_shift : ('a, 'b) t -> int -> unit