1 type derived from SimpleMutableIntervalTree
Microsoft.CodeAnalysis.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\ContextMutableIntervalTree.cs (1)
18
internal sealed class ContextMutableIntervalTree<T, TIntrospector> :
SimpleMutableIntervalTree
<T, TIntrospector>
1 instantiation of SimpleMutableIntervalTree
Microsoft.CodeAnalysis.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\SimpleMutableIntervalTree.cs (1)
20
return new
SimpleMutableIntervalTree
<T, TIntrospector>(in introspector, values);
3 references to SimpleMutableIntervalTree
Microsoft.CodeAnalysis.CodeStyle (3)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\SimpleMutableIntervalTree.cs (2)
11
public static
SimpleMutableIntervalTree
<T, TIntrospector> Create<T, TIntrospector>(in TIntrospector introspector, params T[] values)
17
public static
SimpleMutableIntervalTree
<T, TIntrospector> Create<T, TIntrospector>(in TIntrospector introspector, IEnumerable<T>? values = null)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\TextSpanMutableIntervalTree.cs (1)
17
:
SimpleMutableIntervalTree
<TextSpan, TextSpanIntervalIntrospector>(new TextSpanIntervalIntrospector(), values)