PFLab-OS / Raph_Kernel

http://pflab-os.github.io/Raph_Kernel/
Other
37 stars 7 forks source link

add set data structure #189

Closed mu-mu-mu closed 6 years ago

mu-mu-mu commented 6 years ago

set データ構造を追加 このデータ構造は ・push/popによって,集合の要素を出し入れできる ・popの引数として関数を与えると,集合のなかの特定の条件を満たすものを取得できる. 例)Pop([](sptr s){ if(*(s.GetRawPtr()) == 3){return true;} return false;}); //要素の値が3のもの

liva commented 6 years ago

LGTM