You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Benchmarks for the <see cref="PolylineDecoder"/> class.
14
+
/// </summary>
12
15
[RankColumn]
13
16
publicclassPolylineDecoderBenchmark{
14
17
privatereadonlyConsumer_consumer=new();
15
18
16
19
#pragma warning disable CS8618// Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable.
20
+
/// <summary>
21
+
/// Gets the string value representing the encoded polyline.
22
+
/// </summary>
17
23
publicstringStringValue{get;privateset;}
24
+
25
+
/// <summary>
26
+
/// Gets the character array representing the encoded polyline.
27
+
/// </summary>
18
28
publicchar[]CharArray{get;privateset;}
19
29
20
-
#pragma warning restore CS8618// Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable.
30
+
/// <summary>
31
+
/// Gets the read-only memory representing the encoded polyline.
32
+
/// </summary>
21
33
publicReadOnlyMemory<char>Memory{get;privateset;}
34
+
#pragma warning restore CS8618// Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable.
/// Benchmarks for the <see cref="PolylineEncoder"/> class.
14
+
/// </summary>
12
15
[RankColumn]
13
16
publicclassPolylineEncoderBenchmark{
14
17
privatestaticreadonlyRandomR=new();
15
18
16
19
#pragma warning disable CS8618// Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable.
20
+
/// <summary>
21
+
/// Gets the enumeration of coordinates to be encoded.
#pragma warning restore CS8618// Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable.
0 commit comments