mcy / best

The Best Library: a C++ STL replacement
Apache License 2.0
158 stars 1 forks source link

Forward-declare `best::span` #28

Closed mcy closed 2 months ago

mcy commented 2 months ago

With a little bit of cleverness, we can add best::span to the fwd.h header.

The primary obstacle was that it has a best::option<size_t> template parameter, which is not defined until way later. However, by making that size_t dependent on the first template parameter, we eliminate this problem by forcing two-phase lookup.