We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0b2ae2 commit 4841305Copy full SHA for 4841305
src/array.rs
@@ -104,6 +104,12 @@ extern {
104
/// A multidimensional data container
105
///
106
/// Currently, Array objects can store only data until four dimensions
107
+///
108
+/// ### NOTE
109
110
+/// All operators(traits) from std::ops module implemented for Array object
111
+/// carry out element wise operations. For example, `*` does multiplication of
112
+/// elements at corresponding locations in two different Arrays.
113
pub struct Array {
114
handle: i64,
115
}
0 commit comments