delete inline
This commit is contained in:
@@ -48,7 +48,6 @@ namespace TinySTL{
|
|||||||
void DFS(const Index& index, visiter_func_type func);
|
void DFS(const Index& index, visiter_func_type func);
|
||||||
void BFS(const Index& index, visiter_func_type func);
|
void BFS(const Index& index, visiter_func_type func);
|
||||||
|
|
||||||
//node_type& new_node(const Index& index, const Value& val);
|
|
||||||
node_type make_node(const Index& index, const Value& val);
|
node_type make_node(const Index& index, const Value& val);
|
||||||
node_type& get_node(const Index& index);
|
node_type& get_node(const Index& index);
|
||||||
|
|
||||||
@@ -57,12 +56,12 @@ namespace TinySTL{
|
|||||||
nodes_set_type adjacent_nodes(const Index& index);
|
nodes_set_type adjacent_nodes(const Index& index);
|
||||||
nodes_set_type adjacent_nodes(const node_type& n);
|
nodes_set_type adjacent_nodes(const node_type& n);
|
||||||
|
|
||||||
inline bool empty()const;
|
bool empty()const;
|
||||||
inline size_t size()const;
|
size_t size()const;
|
||||||
inline inner_iterator begin(const Index& index);
|
inner_iterator begin(const Index& index);
|
||||||
inline inner_iterator end(const Index& index);
|
inner_iterator end(const Index& index);
|
||||||
inline iterator begin();
|
iterator begin();
|
||||||
inline iterator end();
|
iterator end();
|
||||||
|
|
||||||
equal_func_type get_equal_func()const;
|
equal_func_type get_equal_func()const;
|
||||||
string to_string();
|
string to_string();
|
||||||
|
|||||||
Reference in New Issue
Block a user