Skip to content

v3.4.3 devel to master #127

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Apr 10, 2017
Prev Previous commit
Next Next commit
Add note regarding std::ops traits for Array documentation
  • Loading branch information
9prady9 committed Mar 25, 2017
commit 484130595962c43f2724632eb84fdf5af323de6c
6 changes: 6 additions & 0 deletions src/array.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,12 @@ extern {
/// A multidimensional data container
///
/// Currently, Array objects can store only data until four dimensions
///
/// ### NOTE
///
/// All operators(traits) from std::ops module implemented for Array object
/// carry out element wise operations. For example, `*` does multiplication of
/// elements at corresponding locations in two different Arrays.
pub struct Array {
handle: i64,
}
Expand Down