Efficient manipulation of contiguous mutable containers of primitive datatypes.
Generalized efficient manipulations of sequences of primitive datatype. Includes specializations for java arrays, array views (subsection of an array) and nio buffers. There are specializations to allow implementations to provide efficient full typed copy functions when the types can be ascertained.
Generic operations include:
(:require [tech.datatype.core :as dtype])
(let [ary (dtype/make-array-of-type :float32 (range 10))
buf (dtype/make-array-of-type :float64 10)]
;;copy starting at position 2 of ary into position 4 of buf 4 elements
(dtype/copy! ary 2 buf 4 4))
;;buf now has [0 0 0 0 2 3 4 5 0 0]
Copyright © 2016 FIXME
Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close