Skip to content

Instantly share code, notes, and snippets.

@JohanMabille
Created January 7, 2020 10:00
Show Gist options
  • Save JohanMabille/69273f304024ad4680b7d3677444e385 to your computer and use it in GitHub Desktop.
Save JohanMabille/69273f304024ad4680b7d3677444e385 to your computer and use it in GitHub Desktop.
template <class T, layout_type L = XTENSOR_DEFAULT_LAYOUT,
class A = std::allocator<T>>
class xarray
{
public:
xarray() = default;
explicit xarray(const shape_type& shape, layout_type l = L);
explicit xarray(const shape_type& shape,
const strides_type& strides);
// ...
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment