Added method "S* V()"
This commit is contained in:
parent
684fe8d464
commit
e3db01f035
|
@ -174,6 +174,10 @@ public:
|
|||
inline S &Z() { static_assert(N>2); return _v[2]; }
|
||||
inline S &W() { return _v[N-1]; }
|
||||
inline const S * V() const
|
||||
{
|
||||
return _v;
|
||||
}
|
||||
inline S * V()
|
||||
{
|
||||
return _v;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue