multi_linestring.qbk 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. [/============================================================================
  2. Boost.Geometry (aka GGL, Generic Geometry Library)
  3. Copyright (c) 2009-2012 Mateusz Loskot, London, UK.
  4. Copyright (c) 2009-2012 Barend Gehrels, Amsterdam, the Netherlands.
  5. Copyright (c) 2009-2012 Bruno Lalande, Paris, France.
  6. Use, modification and distribution is subject to the Boost Software License,
  7. Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  8. http://www.boost.org/LICENSE_1_0.txt)
  9. =============================================================================/]
  10. [section:concept_multi_linestring MultiLinestring Concept]
  11. [heading Description]
  12. [concept MultiLinestring..multi linestring]
  13. [heading Concept Definition]
  14. The MultiLinestring Concept is defined as following:
  15. * There must be a specialization of the metafunction `traits::tag`, defining `multi_linestring_tag` as type
  16. * It must behave like a Boost.Range Random Access Range
  17. * The type defined by the metafunction `range_value<...>::type` must fulfill
  18. the [link geometry.reference.concepts.concept_linestring Linestring Concept]
  19. [heading Available Models]
  20. * [link geometry.reference.models.model_multi_linestring model::multi_linestring]
  21. [endsect]