functions_interval_misc.qbk 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. [/
  2. Copyright (c) 2008-2010 Joachim Faulhaber
  3. Distributed under the Boost Software License, Version 1.0.
  4. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt)
  6. ]
  7. [/ //= Miscellaneous Interval Functions ===================================================================]
  8. [section Miscellaneous Interval Functions]
  9. [table
  10. [[T] [__ch_dsc_itv__] [__ch_cnt_itv__] [__ch_ro_itv__] [__ch_lo_itv__] [__ch_cl_itv__] [__ch_op_itv__] ]
  11. [[Interval bounds] [dynamic] [dynamic] [static] [static] [static] [static] ]
  12. [[Form] [ ] [ ] [asymmetric] [asymmetric] [symmetric] [symmetric] ]
  13. [[['*Miscellaneous*]] [ ] [ ] [ ] [ ] [ ] [ ] ]
  14. [[`bool touches(const T&, const T&)`] [1] [1] [1] [1] [1] [1] ]
  15. [[`T inner_complement(const T&, const T&)`] [1] [1] [1] [1] [1] [1] ]
  16. [[`difference_type distance(const T&, const T&)`] [1] [1] [1] [1] [1] [1] ]
  17. ]
  18. [table
  19. [[['*Miscellaneous Interval Functions*]] [Description] ]
  20. [[`bool touches(const T&, const T&)`] [`touches(x,y)` Between the disjoint intervals `x` and `y` are no elements. ] ]
  21. [[`T inner_complement(const T&, const T&)`] [`z = inner_complement(x,y)` `z` is the interval between `x` and `y`] ]
  22. [[`difference_type distance(const T&, const T&)`] [`d = distance(x,y)` If the domain type of the interval has a difference_type,
  23. `d` is the distance between `x` and `y`.] ]
  24. ]
  25. ['*Back to section . . .*]
  26. [table
  27. []
  28. [[[link additional_interval_functions ['*Additional interval functions*]] ]]
  29. [[[link function_synopsis_table ['*Function Synopsis*]] ]]
  30. [[[link boost_icl.interface ['*Interface*]] ]]
  31. ]
  32. [endsect][/ Miscellaneous Interval Functions]