Ocronet.Dynamic.OcroFST.Heap.Length C# (CSharp) Method

Length() public method

public Length ( ) : int
return int
        public int Length()
        {
            return heap.Length();
        }

Usage Example

コード例 #1
0
ファイル: AStarSearch.cs プロジェクト: liaoheping/OCRonet
 public bool Loop()
 {
     while (heap.Length() > 0)
     {
         if (Step())
         {
             return(true);
         }
     }
     return(false);
 }