Given the following function, taking: a read-only float span (of either dynamic or any static size):
template <long N> void foobar(gsl::span<const float, N> x);
Let's say I have a vector<float>. Passing that as an argument doesn't work, but neither does using gsl::as_span:
std::vector<float> v = {1, 2, 3};
foobar(gsl::as_span(v));
The above does not compile. Apparently gsl::as_span() returns a gsl::span<float>. Besides not understanding why implicit cast to gsl::span<const float> isn't possible, is there a way to force gsl::as_span() to return a read-only span?
Poking around GSL/span.h on the github page you linked to, I found the following overload of
as_spanthat I believe is the one being called here:There's lots to digest here, but in particular the return type of this function boils down to
span<std::remove_reference<decltype(*arr.data())>, ...>. For your givenvector<float>givesspan<float,...>becausedecltype(*arr.data())isfloat &. I believe the following should work:but can't test it myself unfortunately. Let me know if this works.