30 static void write( std::FILE *fp, StringViews
const &...svs ) {
31 static_assert(
sizeof...( StringViews ) > 0 );
32 DAW_CPP23_STATIC_LOCAL
constexpr auto writer =
37 auto ret = std::fwrite( sv.data( ), 1, sv.size( ), f );
39 daw::json::ErrorReason::OutputError );
42 ( (void)writer( fp, svs ), ... );