コード例 #1
0
ファイル: RaiseBox.cs プロジェクト: FoggyFinder/CSharpMath
 public RaiseBox(Structures.Space raise, MathList innerList) =>
 (Raise, InnerList) = (raise, innerList);
コード例 #2
0
ファイル: TextAtom.cs プロジェクト: zzxxhhzxh/CSharpMath
 public Space(Structures.Space space) => Content = space;
コード例 #3
0
ファイル: TextAtom.cs プロジェクト: johndpope/CSharpMath
 public Space(Structures.Space space, int index, int length) : base(new Range(index, length)) => Content = space;
コード例 #4
0
 public void Add(Structures.Space space, int sourceLength) => Add(new TextAtom.Space(space, TextLength, sourceLength));
コード例 #5
0
 public Space(Structures.Space space) : base(MathAtomType.Space, string.Empty) =>
コード例 #6
0
 public static Space Space(Structures.Space sp) => new Space(sp);