Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
誰かがこのコードを理解するのを手伝ってくれるなら:
let rec fold_tree f (T(x,l))= f x (map (fold_tree f) l);;
使い方?私は主に再帰を意味します。
public class RegistryTableItem { public int Root { get; set; }//assume possible values are 0,1,2,3 public string Name { get; set; } public string Component_ { get; set; } } L