sharplib/Globals.cs
Marc Hernandez 066d3bc7f9 Add global aliases for Immutable collections
x) Refactor logging endpoints to use more concise method names
x) Implement implicit conversion for Value struct
x) Add direct callback functionality to log events
2024-06-21 23:36:53 -07:00

7 lines
282 B
C#

global using ImmArray = System.Collections.Immutable.ImmutableArray;
global using ImmDict = System.Collections.Immutable.ImmutableDictionary;
global using ImmSet = System.Collections.Immutable.ImmutableHashSet;
global using II = System.Collections.Immutable.ImmutableInterlocked;