Skip to content

Commit

Permalink
Updating comments
Browse files Browse the repository at this point in the history
  • Loading branch information
whaeck committed Nov 8, 2023
1 parent b696422 commit 928174b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions python/src/tools.python.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ PYBIND11_MODULE( tools, module ) {

// wrap some basic recurring views
// none of these are supposed to be created directly by the user
// these are the bindings for the following aliases:
// DoubleRange = BasicRandomAccessAnyView< double >
// LongRange = BasicRandomAccessAnyView< long >
// IntRange = BasicRandomAccessAnyView< int >
// UnsignedIntRange = BasicRandomAccessAnyView< unsigned int >
// DoubleRange2D = BasicRandomAccessAnyView< DoubleRange >
// DoubleRange3D = BasicRandomAccessAnyView< DoubleRange2D >
// ComplexRange = BasicRandomAccessAnyView< std::complex< double > >
wrapBasicRandomAccessAnyViewOf< double >(
module,
"AnyRandomAccessView< double >" );
Expand Down

0 comments on commit 928174b

Please sign in to comment.