MCPcopy Create free account
hub / github.com/apache/fory / EncodingIndexOf

Method EncodingIndexOf

csharp/src/Fory/TypeMeta.cs:67–78  ·  view source on GitHub ↗
(IReadOnlyList<MetaStringEncoding> encodings, MetaStringEncoding encoding)

Source from the content-addressed store, hash-verified

65internal static class TypeMetaUtils
66{
67 public static int EncodingIndexOf(IReadOnlyList<MetaStringEncoding> encodings, MetaStringEncoding encoding)
68 {
69 for (int i = 0; i < encodings.Count; i++)
70 {
71 if (encodings[i] == encoding)
72 {
73 return i;
74 }
75 }
76
77 return -1;
78 }
79
80 public static string LowerCamelToLowerUnderscore(string name)
81 {

Callers 1

WriteNameMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected