Skip to content
Snippets Groups Projects

Provide library utilities for the three way comparison operator <=>

Merged Simon Praetorius requested to merge feature/three-way-comparison into master
All threads resolved!

Summary

Add concepts Std::three_way_comparable and Std::three_way_comparable_with as well as an algorithm Std::lexicographical_compare_three_way to provide library utilities for the <=> comparison operator.

While C++20 introduces the operator <=> into the language, not all standard libraries have implemented this comparison operator for std data structures, like tuple or array. Iterable containers could easily implement this operator using the lexicographic_compare_three_way algorithms that works with iterators. Since not all types can be compared with <=>, we also need to provide the concept definition that checks whether a type supports it. Also these concepts should be in the standard library, but are not yet fully implemented, especially in libc++-13.

Applications

This utility would allow to provide a three-way comparison operator for our Dune data structures FieldVector, DynamicVector and maybe also for the multi-dimensional array/span structures Std::mdarray and Std::mdspan. Especially for multi-indices a comparison and lexicographical ordering would be nice to have.

Edited by Simon Praetorius

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • Timo Koch
  • Simon Praetorius changed the description

    changed the description

  • added 1 commit

    • 7c6a8c8c - Move the functor compare_three_way into compare.hh

    Compare with previous version

  • Simon Praetorius resolved all threads

    resolved all threads

  • mentioned in commit 20ae67fb

  • Please register or sign in to reply
    Loading