in Runtime/Tokenizers/Decoders/Decoders.cs [357:360]
public List<string> DecodeChain(List<string> tokens)
{
return this.Decoders.Aggregate(tokens, (currentTokens, decoder) => decoder.DecodeChain(currentTokens));
}