Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.33 KB | None | 0 0
  1. /nix/store/56g65y0a57a2q51kd8js8jpbk0i4s1id-range-v3-0.9.1
  2. ├── include
  3. │   ├── concepts
  4. │   │   ├── concepts.hpp
  5. │   │   ├── swap.hpp
  6. │   │   └── type_traits.hpp
  7. │   ├── meta
  8. │   │   ├── meta_fwd.hpp
  9. │   │   └── meta.hpp
  10. │   ├── module.modulemap
  11. │   ├── range
  12. │   │   └── v3
  13. │   │   ├── action
  14. │   │   │   ├── action.hpp
  15. │   │   │   ├── adjacent_remove_if.hpp
  16. │   │   │   ├── concepts.hpp
  17. │   │   │   ├── drop.hpp
  18. │   │   │   ├── drop_while.hpp
  19. │   │   │   ├── erase.hpp
  20. │   │   │   ├── insert.hpp
  21. │   │   │   ├── join.hpp
  22. │   │   │   ├── push_back.hpp
  23. │   │   │   ├── push_front.hpp
  24. │   │   │   ├── remove.hpp
  25. │   │   │   ├── remove_if.hpp
  26. │   │   │   ├── reverse.hpp
  27. │   │   │   ├── shuffle.hpp
  28. │   │   │   ├── slice.hpp
  29. │   │   │   ├── sort.hpp
  30. │   │   │   ├── split.hpp
  31. │   │   │   ├── split_when.hpp
  32. │   │   │   ├── stable_sort.hpp
  33. │   │   │   ├── stride.hpp
  34. │   │   │   ├── take.hpp
  35. │   │   │   ├── take_while.hpp
  36. │   │   │   ├── transform.hpp
  37. │   │   │   ├── unique.hpp
  38. │   │   │   └── unstable_remove_if.hpp
  39. │   │   ├── action.hpp
  40. │   │   ├── algorithm
  41. │   │   │   ├── adjacent_find.hpp
  42. │   │   │   ├── adjacent_remove_if.hpp
  43. │   │   │   ├── all_of.hpp
  44. │   │   │   ├── any_of.hpp
  45. │   │   │   ├── aux_
  46. │   │   │   │   ├── equal_range_n.hpp
  47. │   │   │   │   ├── lower_bound_n.hpp
  48. │   │   │   │   ├── merge_n.hpp
  49. │   │   │   │   ├── merge_n_with_buffer.hpp
  50. │   │   │   │   ├── partition_point_n.hpp
  51. │   │   │   │   ├── sort_n_with_buffer.hpp
  52. │   │   │   │   └── upper_bound_n.hpp
  53. │   │   │   ├── binary_search.hpp
  54. │   │   │   ├── copy_backward.hpp
  55. │   │   │   ├── copy.hpp
  56. │   │   │   ├── copy_if.hpp
  57. │   │   │   ├── copy_n.hpp
  58. │   │   │   ├── count.hpp
  59. │   │   │   ├── count_if.hpp
  60. │   │   │   ├── ends_with.hpp
  61. │   │   │   ├── equal.hpp
  62. │   │   │   ├── equal_range.hpp
  63. │   │   │   ├── fill.hpp
  64. │   │   │   ├── fill_n.hpp
  65. │   │   │   ├── find_end.hpp
  66. │   │   │   ├── find_first_of.hpp
  67. │   │   │   ├── find.hpp
  68. │   │   │   ├── find_if.hpp
  69. │   │   │   ├── find_if_not.hpp
  70. │   │   │   ├── for_each.hpp
  71. │   │   │   ├── for_each_n.hpp
  72. │   │   │   ├── generate.hpp
  73. │   │   │   ├── generate_n.hpp
  74. │   │   │   ├── heap_algorithm.hpp
  75. │   │   │   ├── inplace_merge.hpp
  76. │   │   │   ├── is_partitioned.hpp
  77. │   │   │   ├── is_sorted.hpp
  78. │   │   │   ├── is_sorted_until.hpp
  79. │   │   │   ├── lexicographical_compare.hpp
  80. │   │   │   ├── lower_bound.hpp
  81. │   │   │   ├── max_element.hpp
  82. │   │   │   ├── max.hpp
  83. │   │   │   ├── merge.hpp
  84. │   │   │   ├── min_element.hpp
  85. │   │   │   ├── min.hpp
  86. │   │   │   ├── minmax_element.hpp
  87. │   │   │   ├── minmax.hpp
  88. │   │   │   ├── mismatch.hpp
  89. │   │   │   ├── move_backward.hpp
  90. │   │   │   ├── move.hpp
  91. │   │   │   ├── none_of.hpp
  92. │   │   │   ├── nth_element.hpp
  93. │   │   │   ├── partial_sort_copy.hpp
  94. │   │   │   ├── partial_sort.hpp
  95. │   │   │   ├── partition_copy.hpp
  96. │   │   │   ├── partition.hpp
  97. │   │   │   ├── partition_point.hpp
  98. │   │   │   ├── permutation.hpp
  99. │   │   │   ├── remove_copy.hpp
  100. │   │   │   ├── remove_copy_if.hpp
  101. │   │   │   ├── remove.hpp
  102. │   │   │   ├── remove_if.hpp
  103. │   │   │   ├── replace_copy.hpp
  104. │   │   │   ├── replace_copy_if.hpp
  105. │   │   │   ├── replace.hpp
  106. │   │   │   ├── replace_if.hpp
  107. │   │   │   ├── result_types.hpp
  108. │   │   │   ├── reverse_copy.hpp
  109. │   │   │   ├── reverse.hpp
  110. │   │   │   ├── rotate_copy.hpp
  111. │   │   │   ├── rotate.hpp
  112. │   │   │   ├── sample.hpp
  113. │   │   │   ├── search.hpp
  114. │   │   │   ├── search_n.hpp
  115. │   │   │   ├── set_algorithm.hpp
  116. │   │   │   ├── shuffle.hpp
  117. │   │   │   ├── sort.hpp
  118. │   │   │   ├── stable_partition.hpp
  119. │   │   │   ├── stable_sort.hpp
  120. │   │   │   ├── starts_with.hpp
  121. │   │   │   ├── swap_ranges.hpp
  122. │   │   │   ├── tagspec.hpp
  123. │   │   │   ├── transform.hpp
  124. │   │   │   ├── unique_copy.hpp
  125. │   │   │   ├── unique.hpp
  126. │   │   │   ├── unstable_remove_if.hpp
  127. │   │   │   └── upper_bound.hpp
  128. │   │   ├── algorithm.hpp
  129. │   │   ├── all.hpp
  130. │   │   ├── at.hpp
  131. │   │   ├── back.hpp
  132. │   │   ├── begin_end.hpp
  133. │   │   ├── core.hpp
  134. │   │   ├── data.hpp
  135. │   │   ├── detail
  136. │   │   │   ├── adl_get.hpp
  137. │   │   │   ├── config.hpp
  138. │   │   │   ├── range_access.hpp
  139. │   │   │   ├── satisfy_boost_range.hpp
  140. │   │   │   ├── variant.hpp
  141. │   │   │   └── with_braced_init_args.hpp
  142. │   │   ├── distance.hpp
  143. │   │   ├── empty.hpp
  144. │   │   ├── experimental
  145. │   │   │   ├── utility
  146. │   │   │   │   └── generator.hpp
  147. │   │   │   └── view
  148. │   │   │   └── shared.hpp
  149. │   │   ├── front.hpp
  150. │   │   ├── functional
  151. │   │   │   ├── arithmetic.hpp
  152. │   │   │   ├── bind_back.hpp
  153. │   │   │   ├── bind.hpp
  154. │   │   │   ├── comparisons.hpp
  155. │   │   │   ├── compose.hpp
  156. │   │   │   ├── concepts.hpp
  157. │   │   │   ├── identity.hpp
  158. │   │   │   ├── indirect.hpp
  159. │   │   │   ├── invoke.hpp
  160. │   │   │   ├── not_fn.hpp
  161. │   │   │   ├── on.hpp
  162. │   │   │   ├── overload.hpp
  163. │   │   │   ├── pipeable.hpp
  164. │   │   │   └── reference_wrapper.hpp
  165. │   │   ├── functional.hpp
  166. │   │   ├── getlines.hpp
  167. │   │   ├── index.hpp
  168. │   │   ├── istream_range.hpp
  169. │   │   ├── iterator
  170. │   │   │   ├── access.hpp
  171. │   │   │   ├── basic_iterator.hpp
  172. │   │   │   ├── common_iterator.hpp
  173. │   │   │   ├── concepts.hpp
  174. │   │   │   ├── counted_iterator.hpp
  175. │   │   │   ├── default_sentinel.hpp
  176. │   │   │   ├── diffmax_t.hpp
  177. │   │   │   ├── insert_iterators.hpp
  178. │   │   │   ├── move_iterators.hpp
  179. │   │   │   ├── operations.hpp
  180. │   │   │   ├── reverse_iterator.hpp
  181. │   │   │   ├── stream_iterators.hpp
  182. │   │   │   ├── traits.hpp
  183. │   │   │   └── unreachable_sentinel.hpp
  184. │   │   ├── iterator.hpp
  185. │   │   ├── iterator_range.hpp
  186. │   │   ├── numeric
  187. │   │   │   ├── accumulate.hpp
  188. │   │   │   ├── adjacent_difference.hpp
  189. │   │   │   ├── inner_product.hpp
  190. │   │   │   ├── iota.hpp
  191. │   │   │   └── partial_sum.hpp
  192. │   │   ├── numeric.hpp
  193. │   │   ├── range
  194. │   │   │   ├── access.hpp
  195. │   │   │   ├── concepts.hpp
  196. │   │   │   ├── conversion.hpp
  197. │   │   │   ├── dangling.hpp
  198. │   │   │   ├── operations.hpp
  199. │   │   │   ├── primitives.hpp
  200. │   │   │   └── traits.hpp
  201. │   │   ├── range_access.hpp
  202. │   │   ├── range_concepts.hpp
  203. │   │   ├── range_for.hpp
  204. │   │   ├── range_fwd.hpp
  205. │   │   ├── range.hpp
  206. │   │   ├── range_traits.hpp
  207. │   │   ├── size.hpp
  208. │   │   ├── span.hpp
  209. │   │   ├── to_container.hpp
  210. │   │   ├── utility
  211. │   │   │   ├── addressof.hpp
  212. │   │   │   ├── any.hpp
  213. │   │   │   ├── associated_types.hpp
  214. │   │   │   ├── basic_iterator.hpp
  215. │   │   │   ├── box.hpp
  216. │   │   │   ├── common_iterator.hpp
  217. │   │   │   ├── common_tuple.hpp
  218. │   │   │   ├── common_type.hpp
  219. │   │   │   ├── compressed_pair.hpp
  220. │   │   │   ├── concepts.hpp
  221. │   │   │   ├── copy.hpp
  222. │   │   │   ├── counted_iterator.hpp
  223. │   │   │   ├── dangling.hpp
  224. │   │   │   ├── functional.hpp
  225. │   │   │   ├── get.hpp
  226. │   │   │   ├── infinity.hpp
  227. │   │   │   ├── in_place.hpp
  228. │   │   │   ├── invoke.hpp
  229. │   │   │   ├── iterator_concepts.hpp
  230. │   │   │   ├── iterator.hpp
  231. │   │   │   ├── iterator_traits.hpp
  232. │   │   │   ├── memory.hpp
  233. │   │   │   ├── move.hpp
  234. │   │   │   ├── nullptr_v.hpp
  235. │   │   │   ├── optional.hpp
  236. │   │   │   ├── polymorphic_cast.hpp
  237. │   │   │   ├── random.hpp
  238. │   │   │   ├── scope_exit.hpp
  239. │   │   │   ├── semiregular_box.hpp
  240. │   │   │   ├── semiregular.hpp
  241. │   │   │   ├── static_const.hpp
  242. │   │   │   ├── swap.hpp
  243. │   │   │   ├── tagged_pair.hpp
  244. │   │   │   ├── tagged_tuple.hpp
  245. │   │   │   ├── tuple_algorithm.hpp
  246. │   │   │   ├── unreachable.hpp
  247. │   │   │   └── variant.hpp
  248. │   │   ├── utility.hpp
  249. │   │   ├── version.hpp
  250. │   │   ├── view
  251. │   │   │   ├── adaptor.hpp
  252. │   │   │   ├── addressof.hpp
  253. │   │   │   ├── adjacent_filter.hpp
  254. │   │   │   ├── adjacent_remove_if.hpp
  255. │   │   │   ├── all.hpp
  256. │   │   │   ├── any_view.hpp
  257. │   │   │   ├── bounded.hpp
  258. │   │   │   ├── cartesian_product.hpp
  259. │   │   │   ├── chunk.hpp
  260. │   │   │   ├── common.hpp
  261. │   │   │   ├── concat.hpp
  262. │   │   │   ├── const.hpp
  263. │   │   │   ├── counted.hpp
  264. │   │   │   ├── c_str.hpp
  265. │   │   │   ├── cycle.hpp
  266. │   │   │   ├── delimit.hpp
  267. │   │   │   ├── drop_exactly.hpp
  268. │   │   │   ├── drop.hpp
  269. │   │   │   ├── drop_last.hpp
  270. │   │   │   ├── drop_while.hpp
  271. │   │   │   ├── empty.hpp
  272. │   │   │   ├── enumerate.hpp
  273. │   │   │   ├── exclusive_scan.hpp
  274. │   │   │   ├── facade.hpp
  275. │   │   │   ├── filter.hpp
  276. │   │   │   ├── for_each.hpp
  277. │   │   │   ├── generate.hpp
  278. │   │   │   ├── generate_n.hpp
  279. │   │   │   ├── getlines.hpp
  280. │   │   │   ├── group_by.hpp
  281. │   │   │   ├── indices.hpp
  282. │   │   │   ├── indirect.hpp
  283. │   │   │   ├── interface.hpp
  284. │   │   │   ├── intersperse.hpp
  285. │   │   │   ├── iota.hpp
  286. │   │   │   ├── istream.hpp
  287. │   │   │   ├── join.hpp
  288. │   │   │   ├── linear_distribute.hpp
  289. │   │   │   ├── map.hpp
  290. │   │   │   ├── move.hpp
  291. │   │   │   ├── partial_sum.hpp
  292. │   │   │   ├── ref.hpp
  293. │   │   │   ├── remove.hpp
  294. │   │   │   ├── remove_if.hpp
  295. │   │   │   ├── repeat.hpp
  296. │   │   │   ├── repeat_n.hpp
  297. │   │   │   ├── replace.hpp
  298. │   │   │   ├── replace_if.hpp
  299. │   │   │   ├── reverse.hpp
  300. │   │   │   ├── sample.hpp
  301. │   │   │   ├── set_algorithm.hpp
  302. │   │   │   ├── single.hpp
  303. │   │   │   ├── slice.hpp
  304. │   │   │   ├── sliding.hpp
  305. │   │   │   ├── span.hpp
  306. │   │   │   ├── split.hpp
  307. │   │   │   ├── split_when.hpp
  308. │   │   │   ├── stride.hpp
  309. │   │   │   ├── subrange.hpp
  310. │   │   │   ├── tail.hpp
  311. │   │   │   ├── take_exactly.hpp
  312. │   │   │   ├── take.hpp
  313. │   │   │   ├── take_last.hpp
  314. │   │   │   ├── take_while.hpp
  315. │   │   │   ├── tokenize.hpp
  316. │   │   │   ├── transform.hpp
  317. │   │   │   ├── trim.hpp
  318. │   │   │   ├── unbounded.hpp
  319. │   │   │   ├── unique.hpp
  320. │   │   │   ├── view.hpp
  321. │   │   │   ├── zip.hpp
  322. │   │   │   └── zip_with.hpp
  323. │   │   ├── view_adaptor.hpp
  324. │   │   ├── view_facade.hpp
  325. │   │   ├── view.hpp
  326. │   │   └── view_interface.hpp
  327. │   └── std
  328. │   ├── detail
  329. │   │   └── associated_types.hpp
  330. │   └── iterator
  331. └── lib
  332. └── cmake
  333. └── range-v3
  334. ├── range-v3-config.cmake
  335. └── range-v3-config-version.cmake
  336.  
  337. 23 directories, 311 files
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement