Exposes a TypeWrapper
for the Python slice
type.
Exposes the extended slicing protocol by wrapping the built-in slice type.
The semantics of the constructors and member functions defined below can
be fully understood by reading the TypeWrapper
concept definition. Since slice
is publicly derived from object
, the public object
interface applies to slice
instances as well.
namespace boost { namespace python { class slice : public object { public: slice(); // create an empty slice, equivalent to [::] template <typename Int1, typename Int2> slice(Int1 start, Int2 stop); template <typename Int1, typename Int2, typename Int3> slice(Int1 start, Int2 stop, Int3 step); // Access the parameters this slice was created with. object start(); object stop(); object step(); // The return type of slice::get_indices() template <typename RandomAccessIterator> struct range { RandomAccessIterator start; RandomAccessIterator stop; int step; }; template <typename RandomAccessIterator> range<RandomAccessIterator> get_indices( RandomAccessIterator const& begin, RandomAccessIterator const& end); }; }}
slice();
constructs a slice with default stop, start, and step values. Equivalent
to the slice object created as part of the Python expression base[::]
.
nothing
template <typename Int1, typename Int2> slice(Int1 start, Int2 stop);
start
, stop
, and step
are of type slice_nil
or convertible to type object
.
constructs a new slice with default step value and the provided start
and stop values. Equivalent to the slice object created by the built-in
Python function slice(start,stop)
, or as part of the Python expression
base[start:stop]
.
error_already_set
and sets a Python TypeError exception if no conversion is possible
from the arguments to type object.
template <typename Int1, typename Int2, typename Int3> slice(Int1 start, Int2 stop, Int3 step);
start
, stop
, and step
are slice_nil
or
convertible to type object
.
constructs a new slice with start stop and step values. Equivalent
to the slice object created by the built-in Python function slice(start,stop,step)
,
or as part of the Python expression base[start:stop:step]
.
error_already_set
and sets a Python TypeError exception if no conversion is possible
from the arguments to type object.
object slice::start() const; object slice::stop() const; object slice::step() const;
None
nothing
the parameter that the slice was created with. If the parameter was
omitted or slice_nil
was used when the slice was created, than that parameter will be
a reference to PyNone
and compare equal to a default-constructed object. In principal,
any object may be used when creating a slice object, but in practice
they are usually integers.
template <typename RandomAccessIterator> slice::range<RandomAccessIterator> slice::get_indices( RandomAccessIterator const& begin, RandomAccessIterator const& end) const;
A pair of STL-conforming Random Access Iterators that form a half-open range.
Create a RandomAccessIterator pair that defines a fully-closed range
within the [begin,end)
range of its arguments. This function
translates this slice's indices while accounting for the effects
of any PyNone or negative indices, and non-singular step sizes.
a slice::range
that has been initialized
with a non-zero value of step and a pair of RandomAccessIterators
that point within the range of this functions arguments and define
a closed interval.
Raises a Python TypeError exception if any of this slice's arguments
are neither references to PyNone nor convertible to int. Throws
std::invalid_argument
if the resulting
range would be empty. You should always wrap calls to slice::get_indices()
within try {
...; }
catch (std::invalid_argument)
{}
to handle this case and
take appropriate action.
closed-interval: If an open interval were used, then for step size other than 1, the required state for the end iterator would point beyond the one-past-the-end position or before the beginning of the specified range. exceptions on empty slice: It is impossible to define a closed interval over an empty range, so some other form of error checking would have to be used to prevent undefined behavior. In the case where the exception is not caught, it will simply be translated to Python by the default exception handling mechanisms.
using namespace boost::python; // Perform an extended slice of a Python list. // Warning: extended slicing was not supported for built-in types prior // to Python 2.3 list odd_elements(list l) { return l[slice(_,_,2)]; } // Perform a summation over a slice of a std::vector. double partial_sum(std::vector<double> const& Foo, const slice index) { slice::range<std::vector<double>::const_iterator> bounds; try { bounds = index.get_indices<>(Foo.begin(), Foo.end()); } catch (std::invalid_argument) { return 0.0; } double sum = 0.0; while (bounds.start != bounds.stop) { sum += *bounds.start; std::advance( bounds.start, bounds.step); } sum += *bounds.start; return sum; }