#include "tensorstore/kvstore/generation.h"
template <typename... T>
static StorageGeneration
tensorstore::StorageGeneration::FromValues(const T&... value);

Returns a base generation that encodes one or more trivial values via memcpy.

Parameters:
const T&... value

Value to encode. If the type is std::string_view or std::string, the contents will be encoded directly (without any length indicator). Otherwise, the value is assume to be a trivial type and will be encoded via std::memcpy.