Changeset 2040 for to-imperative/trunk/runtime/rf_table.ih
- Timestamp:
- Jul 27, 2006, 5:00:40 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
to-imperative/trunk/runtime/rf_table.ih
r1498 r2040 71 71 } 72 72 73 inline Expr Table::domain () 73 inline Expr Table::domain () const 74 74 { 75 75 Expr res = Expr(); 76 76 if (root != TableNode::nil) 77 77 list_node(*root, res); 78 return res; 79 } 80 81 inline Expr Table::values () const 82 { 83 Expr res = Expr(); 84 if (root != TableNode::nil) 85 list_values(*root, res); 86 return res; 87 } 88 89 inline Expr Table::entries () const 90 { 91 Expr res = Expr(); 92 if (root != TableNode::nil) 93 list_entries(*root, res); 78 94 return res; 79 95 }
Note: See TracChangeset
for help on using the changeset viewer.