MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / Contains

Method Contains

Source/Engine/Render2D/TextRange.cs:35–35  ·  view source on GitHub ↗

Determines whether this range contains the character index. The index. true if range contains the specified character index; otherwise, false .

(int index)

Source from the content-addressed store, hash-verified

33 /// <param name="index">The index.</param>
34 /// <returns><c>true</c> if range contains the specified character index; otherwise, <c>false</c>.</returns>
35 public bool Contains(int index) => index >= StartIndex && index < EndIndex;
36
37 /// <summary>
38 /// Determines whether this range intersects with the other range.

Callers 8

ReturnToPoolMethod · 0.45
UpdateCascadeChunksMethod · 0.45
RenderMethod · 0.45
RasterizeModelSDFMethod · 0.45
RasterizeHeightfieldMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected