* @brief find a given shape (exactly) * * @param s The shape to find * * @return end(Sh::tag) if the shape was not found, the position otherwise */
| 345 | * @return end(Sh::tag) if the shape was not found, the position otherwise |
| 346 | */ |
| 347 | layer_type::iterator find (const shape_type &s) const |
| 348 | { |
| 349 | return m_layer.find (s); |
| 350 | } |
| 351 | |
| 352 | /** |
| 353 | * @brief get the iterator from a pointer |
no test coverage detected