Is there a way to get the number of intervals in boost :: icl :: interval_map?

Is there a built-in way to get the number of intervals in boost :: icl :: interval_map? I can not find it in the documentation. The size of the method () seems to have a different purpose.

+4
source share
2 answers

interval_count not working?

In particular, see the documentation here .

Please note that due to the fact that the library is developed, these are free functions that take your structure as a parameter.

+2
source

There is also an iterative_size () function for this purpose.

0
source

Source: https://habr.com/ru/post/1395085/


All Articles