mrdocs::dom::LazyArray
Return a new dom::Array based on a lazy array implementation.
Synopsis
Declared in <mrdocs/Dom/LazyArray.hpp>
template<std::ranges::random_access_range T>
requires HasStandaloneValueFrom<std::ranges::range_value_t<T>>
Array
LazyArray(T const& arr);
Return Value
A new dom::Array whose elements are the result of converting each element in the underlying range to a dom::Value.
Parameters
Name |
Description |
arr |
The underlying range of elements. |
Created with MrDocs