Public Types | Static Public Member Functions | List of all members
geo::vect::details::BindCoordManagersImpl< Vector, 3U > Struct Template Reference

#include <geo_vectors_utils.h>

Inheritance diagram for geo::vect::details::BindCoordManagersImpl< Vector, 3U >:
geo::vect::details::BindCoordManagersImplBase< Vector, 3U > geo::vect::details::BindCoordManagersImplBase< Vector, 3U >

Public Types

using Base_t = BindCoordManagersImplBase< Vector, 3U >
 
using Base_t = BindCoordManagersImplBase< Vector, 3U >
 
using Return_t = std::array< Manager_t, Dim >
 
using Return_t = std::array< Manager_t, Dim >
 
using Return_t = std::array< Manager_t, Dim >
 
using Return_t = std::array< Manager_t, Dim >
 

Static Public Member Functions

static Return_t bind (Vector &v)
 
static Return_t bind (Vector &v)
 

Additional Inherited Members

- Private Types inherited from geo::vect::details::BindCoordManagersImplBase< Vector, 3U >
using Manager_t = decltype(Xcoord(std::declval< Vector >()))
 
using Manager_t = decltype(Xcoord(std::declval< Vector >()))
 
using Return_t = std::array< Manager_t, Dim >
 
using Return_t = std::array< Manager_t, Dim >
 
- Static Private Attributes inherited from geo::vect::details::BindCoordManagersImplBase< Vector, 3U >
static constexpr unsigned int Dim
 

Detailed Description

template<typename Vector>
struct geo::vect::details::BindCoordManagersImpl< Vector, 3U >

Definition at line 1547 of file geo_vectors_utils.h.

Member Typedef Documentation

template<typename Vector >
using geo::vect::details::BindCoordManagersImpl< Vector, 3U >::Base_t = BindCoordManagersImplBase<Vector, 3U>

Definition at line 1550 of file geo_vectors_utils.h.

template<typename Vector >
using geo::vect::details::BindCoordManagersImpl< Vector, 3U >::Base_t = BindCoordManagersImplBase<Vector, 3U>

Definition at line 1883 of file geo_vectors_utils.h.

template<typename Vector >
using geo::vect::details::BindCoordManagersImplBase< Vector, N >::Return_t = std::array<Manager_t, Dim>

Definition at line 1854 of file geo_vectors_utils.h.

template<typename Vector >
using geo::vect::details::BindCoordManagersImplBase< Vector, N >::Return_t = std::array<Manager_t, Dim>

Definition at line 1521 of file geo_vectors_utils.h.

template<typename Vector >
using geo::vect::details::BindCoordManagersImplBase< Vector, N >::Return_t = std::array<Manager_t, Dim>

Definition at line 1854 of file geo_vectors_utils.h.

template<typename Vector >
using geo::vect::details::BindCoordManagersImplBase< Vector, N >::Return_t = std::array<Manager_t, Dim>

Definition at line 1521 of file geo_vectors_utils.h.

Member Function Documentation

template<typename Vector >
static Return_t geo::vect::details::BindCoordManagersImpl< Vector, 3U >::bind ( Vector v)
inlinestatic

Definition at line 1552 of file geo_vectors_utils.h.

1553  {
1554  // BUG the double brace syntax is required to work around clang bug 21629
1555  // (https://bugs.llvm.org/show_bug.cgi?id=21629)
1556  return {{
1557  Xcoord(v)
1558  , Ycoord(v)
1559  , Zcoord(v)
1560  }};
1561  }
auto Zcoord(Vector &v)
Returns an object to manage the coordinate Z of the vector v.
auto Ycoord(Vector &v)
Returns an object to manage the coordinate Y of the vector v.
auto Xcoord(Vector &v)
Returns an object to manage the coordinate X of the vector v.
template<typename Vector >
static Return_t geo::vect::details::BindCoordManagersImpl< Vector, 3U >::bind ( Vector v)
inlinestatic

Definition at line 1885 of file geo_vectors_utils.h.

1886  {
1887  // BUG the double brace syntax is required to work around clang bug 21629
1888  // (https://bugs.llvm.org/show_bug.cgi?id=21629)
1889  return {{
1890  Xcoord(v)
1891  , Ycoord(v)
1892  , Zcoord(v)
1893  }};
1894  }
auto Zcoord(Vector &v)
Returns an object to manage the coordinate Z of the vector v.
auto Ycoord(Vector &v)
Returns an object to manage the coordinate Y of the vector v.
auto Xcoord(Vector &v)
Returns an object to manage the coordinate X of the vector v.

The documentation for this struct was generated from the following file: