Describe the enhancement requested
While RunEndEncodedBuilder::AppendScalar accepts the following API usage:
builder.AppendScalar(**MakeScalar(float32(), 0), 3);
// Or
builder.AppendScalar(**MakeScalar(ree_type, *MakeScalar(float32(), 0)), 2);
RunEndEncodedBuilder::AppendScalars, however, only accepts the following style:
builder.AppendScalars({
*MakeScalar(ree_type, *MakeScalar(float32(), 0)),
*MakeScalar(ree_type, *MakeScalar(float32(), 0))
});
Component(s)
C++
Describe the enhancement requested
While
RunEndEncodedBuilder::AppendScalaraccepts the following API usage:RunEndEncodedBuilder::AppendScalars, however, only accepts the following style:builder.AppendScalars({ *MakeScalar(ree_type, *MakeScalar(float32(), 0)), *MakeScalar(ree_type, *MakeScalar(float32(), 0)) });Component(s)
C++