[FEA] Support for std::byte in column_device_view
's data function
#11362
Labels
feature request
New feature or request
column_device_view
's data function
#11362
Is your feature request related to a problem? Please describe.
It was noted in the review of
byte_array_view
here that the use ofstd::byte
would be useful. This wasn't able to be done due to the use ofcolumn_device_view
's data function, which is uses SFINAE to limit access tois_rep_layout_compatible<T>
, which doesn't includestd::byte
.Describe the solution you'd like
It would be useful to ask a
column_device_view
for astd::byte
pointer, so adding it as an option in the SFINAE would be useful.Describe alternatives you've considered
Currently we are using
uint8_t
for the pointer type.The text was updated successfully, but these errors were encountered: