コード例 #1
0
ファイル: FunctionLeaf.cs プロジェクト: EflfK/Parser
 public override void ShiftKeys(Func <t2, t2> ShiftKey)
 {
     Leaves.ForEach(delegate(ILeaf <t1, t2, t3> l)
     {
         l.ShiftKeys(ShiftKey);
     });
 }
コード例 #2
0
ファイル: LeafPool.cs プロジェクト: miromancekimika/hola
 public static void Destroy()
 {
     Leaves.ForEach(x => x.Disconnect());
     Leaves.Clear();
 }