MCPcopy Create free account
hub / github.com/p-ranav/tabulate / data_at

Method data_at

include/tabulate/string_view_lite.hpp:998–1005  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

996 }
997
998 nssv_constexpr const_reference data_at( size_type pos ) const
999 {
1000#if nssv_BETWEEN( nssv_COMPILER_GNUC_VERSION, 1, 500 )
1001 return data_[pos];
1002#else
1003 return assert( pos < size() ), data_[pos];
1004#endif
1005 }
1006
1007private:
1008 const_pointer data_;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected