logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

range - index range for a subset of a vector (rheolef-7.2)

Author

       Pierre  Saramito  <Pierre.Saramito@imag.fr>

Description

       This class represents a range of index for addressing a subset of the vec(4) container.

Example

           vec<double> x (100, 3.14);
           vec<double> y = x(range(0,50));
           dout << y << endl;

Implementation

       This documentation has been generated from file linalg/lib/range.h

       struct range {
         using size_type = size_t;
         range (size_type start=0, size_type stop=0);
         size_type start() const;
         size_type size() const;
         static range all();

       };

Name

       range - index range for a subset of a vector (rheolef-7.2)

See Also