ByChance.Core.Chunk.GetAlignedContextCount C# (CSharp) Method

GetAlignedContextCount() public method

Gets the total number of aligned (used) contexts of this chunk.
public GetAlignedContextCount ( ) : int
return int
        public int GetAlignedContextCount()
        {
            return this.ChunkContexts.Count(context => context.Target != null);
        }