| 84 | } |
| 85 | |
| 86 | inline PathMatcher::Node::ConstChildMapIterator PathMatcher::Node::wildcardsBegin() const |
| 87 | { |
| 88 | // The value for name used here will never be inserted in the map, |
| 89 | // but it marks the transition from non-wildcarded to wildcarded names. |
| 90 | return children.lower_bound( Name( IECore::InternedString(), Name::Boundary ) ); |
| 91 | } |
| 92 | |
| 93 | inline PathMatcher::Node *PathMatcher::Node::child( const Name &name ) |
| 94 | { |
no test coverage detected