couchbase 3.0.0.alpha.4-universal-darwin-19 → 3.0.0.alpha.5-universal-darwin-19

Sign up to get free protection for your applications and to get access to all the features.
Files changed (749) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/bin/fetch-stats +19 -0
  4. data/bin/init-cluster +24 -24
  5. data/bin/jenkins/build-extension +35 -0
  6. data/bin/jenkins/install-dependencies +47 -0
  7. data/bin/jenkins/test-with-cbdyncluster +58 -0
  8. data/couchbase.gemspec +27 -1
  9. data/examples/subdocument.rb +2 -2
  10. data/ext/build_version.hxx.in +1 -1
  11. data/ext/couchbase/cluster.hxx +41 -40
  12. data/ext/couchbase/couchbase.cxx +174 -61
  13. data/ext/couchbase/io/dns_message.hxx +3 -6
  14. data/ext/couchbase/io/http_session.hxx +31 -26
  15. data/ext/couchbase/io/{session_manager.hxx → http_session_manager.hxx} +3 -3
  16. data/ext/couchbase/io/mcbp_message.hxx +19 -2
  17. data/ext/couchbase/io/mcbp_session.hxx +89 -47
  18. data/ext/couchbase/operations/command.hxx +18 -7
  19. data/ext/couchbase/operations/document_analytics.hxx +5 -6
  20. data/ext/couchbase/operations/document_decrement.hxx +2 -1
  21. data/ext/couchbase/operations/document_exists.hxx +2 -1
  22. data/ext/couchbase/operations/document_get.hxx +2 -1
  23. data/ext/couchbase/operations/document_get_and_lock.hxx +2 -1
  24. data/ext/couchbase/operations/document_get_and_touch.hxx +2 -1
  25. data/ext/couchbase/operations/document_get_projected.hxx +2 -1
  26. data/ext/couchbase/operations/document_increment.hxx +2 -1
  27. data/ext/couchbase/operations/document_insert.hxx +2 -1
  28. data/ext/couchbase/operations/document_lookup_in.hxx +21 -1
  29. data/ext/couchbase/operations/document_mutate_in.hxx +44 -2
  30. data/ext/couchbase/operations/document_query.hxx +6 -7
  31. data/ext/couchbase/operations/document_remove.hxx +2 -1
  32. data/ext/couchbase/operations/document_replace.hxx +2 -1
  33. data/ext/couchbase/operations/document_search.hxx +3 -2
  34. data/ext/couchbase/operations/document_touch.hxx +2 -1
  35. data/ext/couchbase/operations/document_unlock.hxx +2 -1
  36. data/ext/couchbase/operations/document_upsert.hxx +2 -1
  37. data/ext/couchbase/operations/document_view.hxx +2 -1
  38. data/ext/couchbase/operations/view_index_get_all.hxx +1 -1
  39. data/ext/couchbase/protocol/client_opcode.hxx +7 -3
  40. data/ext/couchbase/protocol/client_response.hxx +1 -1
  41. data/ext/couchbase/protocol/cmd_hello.hxx +10 -0
  42. data/ext/couchbase/protocol/cmd_lookup_in.hxx +1 -0
  43. data/ext/couchbase/protocol/cmd_mutate_in.hxx +53 -5
  44. data/ext/couchbase/version.hxx +1 -1
  45. data/ext/extconf.rb +1 -1
  46. data/lib/couchbase/bucket.rb +3 -0
  47. data/lib/couchbase/cluster.rb +5 -0
  48. data/lib/couchbase/collection.rb +18 -6
  49. data/lib/couchbase/collection_options.rb +50 -7
  50. data/lib/couchbase/errors.rb +2 -2
  51. data/lib/couchbase/subdoc.rb +80 -19
  52. data/lib/couchbase/version.rb +1 -1
  53. metadata +7 -705
  54. data/ext/third_party/asio/asio/src/examples/cpp03/Makefile.am +0 -251
  55. data/ext/third_party/asio/asio/src/examples/cpp03/allocation/.gitignore +0 -10
  56. data/ext/third_party/asio/asio/src/examples/cpp03/allocation/server.cpp +0 -285
  57. data/ext/third_party/asio/asio/src/examples/cpp03/buffers/.gitignore +0 -10
  58. data/ext/third_party/asio/asio/src/examples/cpp03/buffers/reference_counted.cpp +0 -131
  59. data/ext/third_party/asio/asio/src/examples/cpp03/chat/.gitignore +0 -11
  60. data/ext/third_party/asio/asio/src/examples/cpp03/chat/chat_client.cpp +0 -177
  61. data/ext/third_party/asio/asio/src/examples/cpp03/chat/chat_message.hpp +0 -93
  62. data/ext/third_party/asio/asio/src/examples/cpp03/chat/chat_server.cpp +0 -249
  63. data/ext/third_party/asio/asio/src/examples/cpp03/chat/posix_chat_client.cpp +0 -204
  64. data/ext/third_party/asio/asio/src/examples/cpp03/echo/.gitignore +0 -11
  65. data/ext/third_party/asio/asio/src/examples/cpp03/echo/async_tcp_echo_server.cpp +0 -137
  66. data/ext/third_party/asio/asio/src/examples/cpp03/echo/async_udp_echo_server.cpp +0 -92
  67. data/ext/third_party/asio/asio/src/examples/cpp03/echo/blocking_tcp_echo_client.cpp +0 -59
  68. data/ext/third_party/asio/asio/src/examples/cpp03/echo/blocking_tcp_echo_server.cpp +0 -79
  69. data/ext/third_party/asio/asio/src/examples/cpp03/echo/blocking_udp_echo_client.cpp +0 -59
  70. data/ext/third_party/asio/asio/src/examples/cpp03/echo/blocking_udp_echo_server.cpp +0 -53
  71. data/ext/third_party/asio/asio/src/examples/cpp03/fork/.gitignore +0 -11
  72. data/ext/third_party/asio/asio/src/examples/cpp03/fork/daemon.cpp +0 -190
  73. data/ext/third_party/asio/asio/src/examples/cpp03/fork/process_per_connection.cpp +0 -161
  74. data/ext/third_party/asio/asio/src/examples/cpp03/http/client/.gitignore +0 -10
  75. data/ext/third_party/asio/asio/src/examples/cpp03/http/client/async_client.cpp +0 -204
  76. data/ext/third_party/asio/asio/src/examples/cpp03/http/client/sync_client.cpp +0 -106
  77. data/ext/third_party/asio/asio/src/examples/cpp03/http/doc_root/data_1K.html +0 -28
  78. data/ext/third_party/asio/asio/src/examples/cpp03/http/doc_root/data_2K.html +0 -49
  79. data/ext/third_party/asio/asio/src/examples/cpp03/http/doc_root/data_4K.html +0 -91
  80. data/ext/third_party/asio/asio/src/examples/cpp03/http/doc_root/data_8K.html +0 -175
  81. data/ext/third_party/asio/asio/src/examples/cpp03/http/server/.gitignore +0 -11
  82. data/ext/third_party/asio/asio/src/examples/cpp03/http/server/connection.cpp +0 -99
  83. data/ext/third_party/asio/asio/src/examples/cpp03/http/server/connection.hpp +0 -83
  84. data/ext/third_party/asio/asio/src/examples/cpp03/http/server/connection_manager.cpp +0 -38
  85. data/ext/third_party/asio/asio/src/examples/cpp03/http/server/connection_manager.hpp +0 -44
  86. data/ext/third_party/asio/asio/src/examples/cpp03/http/server/header.hpp +0 -28
  87. data/ext/third_party/asio/asio/src/examples/cpp03/http/server/main.cpp +0 -44
  88. data/ext/third_party/asio/asio/src/examples/cpp03/http/server/mime_types.cpp +0 -46
  89. data/ext/third_party/asio/asio/src/examples/cpp03/http/server/mime_types.hpp +0 -27
  90. data/ext/third_party/asio/asio/src/examples/cpp03/http/server/reply.cpp +0 -256
  91. data/ext/third_party/asio/asio/src/examples/cpp03/http/server/reply.hpp +0 -64
  92. data/ext/third_party/asio/asio/src/examples/cpp03/http/server/request.hpp +0 -34
  93. data/ext/third_party/asio/asio/src/examples/cpp03/http/server/request_handler.cpp +0 -122
  94. data/ext/third_party/asio/asio/src/examples/cpp03/http/server/request_handler.hpp +0 -46
  95. data/ext/third_party/asio/asio/src/examples/cpp03/http/server/request_parser.cpp +0 -315
  96. data/ext/third_party/asio/asio/src/examples/cpp03/http/server/request_parser.hpp +0 -95
  97. data/ext/third_party/asio/asio/src/examples/cpp03/http/server/server.cpp +0 -94
  98. data/ext/third_party/asio/asio/src/examples/cpp03/http/server/server.hpp +0 -69
  99. data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/.gitignore +0 -11
  100. data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/connection.cpp +0 -93
  101. data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/connection.hpp +0 -75
  102. data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/header.hpp +0 -28
  103. data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/io_context_pool.cpp +0 -69
  104. data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/io_context_pool.hpp +0 -58
  105. data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/main.cpp +0 -46
  106. data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/mime_types.cpp +0 -46
  107. data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/mime_types.hpp +0 -27
  108. data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/reply.cpp +0 -256
  109. data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/reply.hpp +0 -64
  110. data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/request.hpp +0 -34
  111. data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/request_handler.cpp +0 -122
  112. data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/request_handler.hpp +0 -46
  113. data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/request_parser.cpp +0 -315
  114. data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/request_parser.hpp +0 -95
  115. data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/server.cpp +0 -77
  116. data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/server.hpp +0 -68
  117. data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/.gitignore +0 -11
  118. data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/connection.cpp +0 -94
  119. data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/connection.hpp +0 -78
  120. data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/header.hpp +0 -28
  121. data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/main.cpp +0 -46
  122. data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/mime_types.cpp +0 -46
  123. data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/mime_types.hpp +0 -27
  124. data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/reply.cpp +0 -256
  125. data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/reply.hpp +0 -64
  126. data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/request.hpp +0 -34
  127. data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/request_handler.cpp +0 -122
  128. data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/request_handler.hpp +0 -46
  129. data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/request_parser.cpp +0 -315
  130. data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/request_parser.hpp +0 -95
  131. data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/server.cpp +0 -89
  132. data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/server.hpp +0 -70
  133. data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/.gitignore +0 -11
  134. data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/file_handler.cpp +0 -122
  135. data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/file_handler.hpp +0 -44
  136. data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/header.hpp +0 -28
  137. data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/main.cpp +0 -58
  138. data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/mime_types.cpp +0 -46
  139. data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/mime_types.hpp +0 -27
  140. data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/reply.cpp +0 -256
  141. data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/reply.hpp +0 -64
  142. data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/request.hpp +0 -46
  143. data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/request_parser.cpp +0 -226
  144. data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/request_parser.hpp +0 -78
  145. data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/server.cpp +0 -122
  146. data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/server.hpp +0 -73
  147. data/ext/third_party/asio/asio/src/examples/cpp03/icmp/.gitignore +0 -10
  148. data/ext/third_party/asio/asio/src/examples/cpp03/icmp/icmp_header.hpp +0 -94
  149. data/ext/third_party/asio/asio/src/examples/cpp03/icmp/ipv4_header.hpp +0 -102
  150. data/ext/third_party/asio/asio/src/examples/cpp03/icmp/ping.cpp +0 -163
  151. data/ext/third_party/asio/asio/src/examples/cpp03/invocation/.gitignore +0 -10
  152. data/ext/third_party/asio/asio/src/examples/cpp03/invocation/prioritised_handlers.cpp +0 -171
  153. data/ext/third_party/asio/asio/src/examples/cpp03/iostreams/.gitignore +0 -11
  154. data/ext/third_party/asio/asio/src/examples/cpp03/iostreams/daytime_client.cpp +0 -44
  155. data/ext/third_party/asio/asio/src/examples/cpp03/iostreams/daytime_server.cpp +0 -51
  156. data/ext/third_party/asio/asio/src/examples/cpp03/iostreams/http_client.cpp +0 -91
  157. data/ext/third_party/asio/asio/src/examples/cpp03/local/.gitignore +0 -13
  158. data/ext/third_party/asio/asio/src/examples/cpp03/local/connect_pair.cpp +0 -141
  159. data/ext/third_party/asio/asio/src/examples/cpp03/local/iostream_client.cpp +0 -62
  160. data/ext/third_party/asio/asio/src/examples/cpp03/local/stream_client.cpp +0 -61
  161. data/ext/third_party/asio/asio/src/examples/cpp03/local/stream_server.cpp +0 -141
  162. data/ext/third_party/asio/asio/src/examples/cpp03/multicast/.gitignore +0 -11
  163. data/ext/third_party/asio/asio/src/examples/cpp03/multicast/receiver.cpp +0 -93
  164. data/ext/third_party/asio/asio/src/examples/cpp03/multicast/sender.cpp +0 -98
  165. data/ext/third_party/asio/asio/src/examples/cpp03/nonblocking/.gitignore +0 -10
  166. data/ext/third_party/asio/asio/src/examples/cpp03/nonblocking/third_party_lib.cpp +0 -240
  167. data/ext/third_party/asio/asio/src/examples/cpp03/porthopper/.gitignore +0 -11
  168. data/ext/third_party/asio/asio/src/examples/cpp03/porthopper/client.cpp +0 -192
  169. data/ext/third_party/asio/asio/src/examples/cpp03/porthopper/protocol.hpp +0 -156
  170. data/ext/third_party/asio/asio/src/examples/cpp03/porthopper/server.cpp +0 -187
  171. data/ext/third_party/asio/asio/src/examples/cpp03/serialization/.gitignore +0 -11
  172. data/ext/third_party/asio/asio/src/examples/cpp03/serialization/client.cpp +0 -125
  173. data/ext/third_party/asio/asio/src/examples/cpp03/serialization/connection.hpp +0 -188
  174. data/ext/third_party/asio/asio/src/examples/cpp03/serialization/server.cpp +0 -123
  175. data/ext/third_party/asio/asio/src/examples/cpp03/serialization/stock.hpp +0 -50
  176. data/ext/third_party/asio/asio/src/examples/cpp03/services/.gitignore +0 -11
  177. data/ext/third_party/asio/asio/src/examples/cpp03/services/basic_logger.hpp +0 -83
  178. data/ext/third_party/asio/asio/src/examples/cpp03/services/daytime_client.cpp +0 -97
  179. data/ext/third_party/asio/asio/src/examples/cpp03/services/logger.hpp +0 -24
  180. data/ext/third_party/asio/asio/src/examples/cpp03/services/logger_service.cpp +0 -11
  181. data/ext/third_party/asio/asio/src/examples/cpp03/services/logger_service.hpp +0 -145
  182. data/ext/third_party/asio/asio/src/examples/cpp03/socks4/.gitignore +0 -10
  183. data/ext/third_party/asio/asio/src/examples/cpp03/socks4/socks4.hpp +0 -144
  184. data/ext/third_party/asio/asio/src/examples/cpp03/socks4/sync_client.cpp +0 -94
  185. data/ext/third_party/asio/asio/src/examples/cpp03/spawn/.gitignore +0 -12
  186. data/ext/third_party/asio/asio/src/examples/cpp03/spawn/echo_server.cpp +0 -122
  187. data/ext/third_party/asio/asio/src/examples/cpp03/spawn/parallel_grep.cpp +0 -89
  188. data/ext/third_party/asio/asio/src/examples/cpp03/ssl/.gitignore +0 -11
  189. data/ext/third_party/asio/asio/src/examples/cpp03/ssl/README +0 -8
  190. data/ext/third_party/asio/asio/src/examples/cpp03/ssl/ca.pem +0 -49
  191. data/ext/third_party/asio/asio/src/examples/cpp03/ssl/client.cpp +0 -157
  192. data/ext/third_party/asio/asio/src/examples/cpp03/ssl/dh2048.pem +0 -8
  193. data/ext/third_party/asio/asio/src/examples/cpp03/ssl/server.cpp +0 -170
  194. data/ext/third_party/asio/asio/src/examples/cpp03/ssl/server.pem +0 -71
  195. data/ext/third_party/asio/asio/src/examples/cpp03/timeouts/.gitignore +0 -11
  196. data/ext/third_party/asio/asio/src/examples/cpp03/timeouts/async_tcp_client.cpp +0 -311
  197. data/ext/third_party/asio/asio/src/examples/cpp03/timeouts/blocking_tcp_client.cpp +0 -191
  198. data/ext/third_party/asio/asio/src/examples/cpp03/timeouts/blocking_token_tcp_client.cpp +0 -200
  199. data/ext/third_party/asio/asio/src/examples/cpp03/timeouts/blocking_udp_client.cpp +0 -154
  200. data/ext/third_party/asio/asio/src/examples/cpp03/timeouts/server.cpp +0 -433
  201. data/ext/third_party/asio/asio/src/examples/cpp03/timers/.gitignore +0 -10
  202. data/ext/third_party/asio/asio/src/examples/cpp03/timers/time_t_timer.cpp +0 -106
  203. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime1/.gitignore +0 -10
  204. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime1/client.cpp +0 -57
  205. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime2/.gitignore +0 -10
  206. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime2/server.cpp +0 -50
  207. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime3/.gitignore +0 -10
  208. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime3/server.cpp +0 -119
  209. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime4/.gitignore +0 -10
  210. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime4/client.cpp +0 -52
  211. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime5/.gitignore +0 -10
  212. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime5/server.cpp +0 -53
  213. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime6/.gitignore +0 -10
  214. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime6/server.cpp +0 -89
  215. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime7/.gitignore +0 -10
  216. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime7/server.cpp +0 -160
  217. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime_dox.txt +0 -500
  218. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/index_dox.txt +0 -48
  219. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer1/.gitignore +0 -10
  220. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer1/timer.cpp +0 -24
  221. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer2/.gitignore +0 -10
  222. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer2/timer.cpp +0 -29
  223. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer3/.gitignore +0 -10
  224. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer3/timer.cpp +0 -43
  225. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer4/.gitignore +0 -10
  226. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer4/timer.cpp +0 -54
  227. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer5/.gitignore +0 -10
  228. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer5/timer.cpp +0 -80
  229. data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer_dox.txt +0 -378
  230. data/ext/third_party/asio/asio/src/examples/cpp03/windows/.gitignore +0 -10
  231. data/ext/third_party/asio/asio/src/examples/cpp03/windows/transmit_file.cpp +0 -177
  232. data/ext/third_party/asio/asio/src/examples/cpp11/Makefile.am +0 -161
  233. data/ext/third_party/asio/asio/src/examples/cpp11/allocation/.gitignore +0 -10
  234. data/ext/third_party/asio/asio/src/examples/cpp11/allocation/server.cpp +0 -255
  235. data/ext/third_party/asio/asio/src/examples/cpp11/buffers/.gitignore +0 -10
  236. data/ext/third_party/asio/asio/src/examples/cpp11/buffers/reference_counted.cpp +0 -122
  237. data/ext/third_party/asio/asio/src/examples/cpp11/chat/.gitignore +0 -11
  238. data/ext/third_party/asio/asio/src/examples/cpp11/chat/chat_client.cpp +0 -167
  239. data/ext/third_party/asio/asio/src/examples/cpp11/chat/chat_message.hpp +0 -91
  240. data/ext/third_party/asio/asio/src/examples/cpp11/chat/chat_server.cpp +0 -227
  241. data/ext/third_party/asio/asio/src/examples/cpp11/echo/.gitignore +0 -11
  242. data/ext/third_party/asio/asio/src/examples/cpp11/echo/async_tcp_echo_server.cpp +0 -114
  243. data/ext/third_party/asio/asio/src/examples/cpp11/echo/async_udp_echo_server.cpp +0 -82
  244. data/ext/third_party/asio/asio/src/examples/cpp11/echo/blocking_tcp_echo_client.cpp +0 -55
  245. data/ext/third_party/asio/asio/src/examples/cpp11/echo/blocking_tcp_echo_server.cpp +0 -74
  246. data/ext/third_party/asio/asio/src/examples/cpp11/echo/blocking_udp_echo_client.cpp +0 -58
  247. data/ext/third_party/asio/asio/src/examples/cpp11/echo/blocking_udp_echo_server.cpp +0 -52
  248. data/ext/third_party/asio/asio/src/examples/cpp11/executors/.gitignore +0 -5
  249. data/ext/third_party/asio/asio/src/examples/cpp11/executors/actor.cpp +0 -286
  250. data/ext/third_party/asio/asio/src/examples/cpp11/executors/bank_account_1.cpp +0 -54
  251. data/ext/third_party/asio/asio/src/examples/cpp11/executors/bank_account_2.cpp +0 -54
  252. data/ext/third_party/asio/asio/src/examples/cpp11/executors/fork_join.cpp +0 -328
  253. data/ext/third_party/asio/asio/src/examples/cpp11/executors/pipeline.cpp +0 -299
  254. data/ext/third_party/asio/asio/src/examples/cpp11/executors/priority_scheduler.cpp +0 -174
  255. data/ext/third_party/asio/asio/src/examples/cpp11/fork/.gitignore +0 -11
  256. data/ext/third_party/asio/asio/src/examples/cpp11/fork/daemon.cpp +0 -189
  257. data/ext/third_party/asio/asio/src/examples/cpp11/fork/process_per_connection.cpp +0 -162
  258. data/ext/third_party/asio/asio/src/examples/cpp11/futures/.gitignore +0 -11
  259. data/ext/third_party/asio/asio/src/examples/cpp11/futures/daytime_client.cpp +0 -94
  260. data/ext/third_party/asio/asio/src/examples/cpp11/handler_tracking/custom_tracking.hpp +0 -201
  261. data/ext/third_party/asio/asio/src/examples/cpp11/http/server/.gitignore +0 -11
  262. data/ext/third_party/asio/asio/src/examples/cpp11/http/server/connection.cpp +0 -94
  263. data/ext/third_party/asio/asio/src/examples/cpp11/http/server/connection.hpp +0 -79
  264. data/ext/third_party/asio/asio/src/examples/cpp11/http/server/connection_manager.cpp +0 -40
  265. data/ext/third_party/asio/asio/src/examples/cpp11/http/server/connection_manager.hpp +0 -48
  266. data/ext/third_party/asio/asio/src/examples/cpp11/http/server/header.hpp +0 -28
  267. data/ext/third_party/asio/asio/src/examples/cpp11/http/server/main.cpp +0 -43
  268. data/ext/third_party/asio/asio/src/examples/cpp11/http/server/mime_types.cpp +0 -45
  269. data/ext/third_party/asio/asio/src/examples/cpp11/http/server/mime_types.hpp +0 -27
  270. data/ext/third_party/asio/asio/src/examples/cpp11/http/server/reply.cpp +0 -255
  271. data/ext/third_party/asio/asio/src/examples/cpp11/http/server/reply.hpp +0 -64
  272. data/ext/third_party/asio/asio/src/examples/cpp11/http/server/request.hpp +0 -34
  273. data/ext/third_party/asio/asio/src/examples/cpp11/http/server/request_handler.cpp +0 -121
  274. data/ext/third_party/asio/asio/src/examples/cpp11/http/server/request_handler.hpp +0 -47
  275. data/ext/third_party/asio/asio/src/examples/cpp11/http/server/request_parser.cpp +0 -315
  276. data/ext/third_party/asio/asio/src/examples/cpp11/http/server/request_parser.hpp +0 -96
  277. data/ext/third_party/asio/asio/src/examples/cpp11/http/server/server.cpp +0 -94
  278. data/ext/third_party/asio/asio/src/examples/cpp11/http/server/server.hpp +0 -64
  279. data/ext/third_party/asio/asio/src/examples/cpp11/invocation/.gitignore +0 -10
  280. data/ext/third_party/asio/asio/src/examples/cpp11/invocation/prioritised_handlers.cpp +0 -202
  281. data/ext/third_party/asio/asio/src/examples/cpp11/iostreams/.gitignore +0 -11
  282. data/ext/third_party/asio/asio/src/examples/cpp11/iostreams/http_client.cpp +0 -91
  283. data/ext/third_party/asio/asio/src/examples/cpp11/local/.gitignore +0 -13
  284. data/ext/third_party/asio/asio/src/examples/cpp11/local/connect_pair.cpp +0 -129
  285. data/ext/third_party/asio/asio/src/examples/cpp11/local/iostream_client.cpp +0 -61
  286. data/ext/third_party/asio/asio/src/examples/cpp11/local/stream_client.cpp +0 -60
  287. data/ext/third_party/asio/asio/src/examples/cpp11/local/stream_server.cpp +0 -121
  288. data/ext/third_party/asio/asio/src/examples/cpp11/multicast/.gitignore +0 -11
  289. data/ext/third_party/asio/asio/src/examples/cpp11/multicast/receiver.cpp +0 -88
  290. data/ext/third_party/asio/asio/src/examples/cpp11/multicast/sender.cpp +0 -91
  291. data/ext/third_party/asio/asio/src/examples/cpp11/nonblocking/.gitignore +0 -10
  292. data/ext/third_party/asio/asio/src/examples/cpp11/nonblocking/third_party_lib.cpp +0 -212
  293. data/ext/third_party/asio/asio/src/examples/cpp11/operations/.gitignore +0 -10
  294. data/ext/third_party/asio/asio/src/examples/cpp11/operations/composed_1.cpp +0 -113
  295. data/ext/third_party/asio/asio/src/examples/cpp11/operations/composed_2.cpp +0 -131
  296. data/ext/third_party/asio/asio/src/examples/cpp11/operations/composed_3.cpp +0 -192
  297. data/ext/third_party/asio/asio/src/examples/cpp11/operations/composed_4.cpp +0 -207
  298. data/ext/third_party/asio/asio/src/examples/cpp11/operations/composed_5.cpp +0 -243
  299. data/ext/third_party/asio/asio/src/examples/cpp11/operations/composed_6.cpp +0 -302
  300. data/ext/third_party/asio/asio/src/examples/cpp11/operations/composed_7.cpp +0 -222
  301. data/ext/third_party/asio/asio/src/examples/cpp11/operations/composed_8.cpp +0 -217
  302. data/ext/third_party/asio/asio/src/examples/cpp11/socks4/.gitignore +0 -10
  303. data/ext/third_party/asio/asio/src/examples/cpp11/socks4/socks4.hpp +0 -143
  304. data/ext/third_party/asio/asio/src/examples/cpp11/socks4/sync_client.cpp +0 -93
  305. data/ext/third_party/asio/asio/src/examples/cpp11/spawn/.gitignore +0 -12
  306. data/ext/third_party/asio/asio/src/examples/cpp11/spawn/echo_server.cpp +0 -111
  307. data/ext/third_party/asio/asio/src/examples/cpp11/spawn/parallel_grep.cpp +0 -84
  308. data/ext/third_party/asio/asio/src/examples/cpp11/ssl/.gitignore +0 -11
  309. data/ext/third_party/asio/asio/src/examples/cpp11/ssl/README +0 -8
  310. data/ext/third_party/asio/asio/src/examples/cpp11/ssl/ca.pem +0 -49
  311. data/ext/third_party/asio/asio/src/examples/cpp11/ssl/client.cpp +0 -165
  312. data/ext/third_party/asio/asio/src/examples/cpp11/ssl/dh2048.pem +0 -8
  313. data/ext/third_party/asio/asio/src/examples/cpp11/ssl/server.cpp +0 -143
  314. data/ext/third_party/asio/asio/src/examples/cpp11/ssl/server.pem +0 -71
  315. data/ext/third_party/asio/asio/src/examples/cpp11/timeouts/.gitignore +0 -11
  316. data/ext/third_party/asio/asio/src/examples/cpp11/timeouts/async_tcp_client.cpp +0 -311
  317. data/ext/third_party/asio/asio/src/examples/cpp11/timeouts/blocking_tcp_client.cpp +0 -192
  318. data/ext/third_party/asio/asio/src/examples/cpp11/timeouts/blocking_token_tcp_client.cpp +0 -197
  319. data/ext/third_party/asio/asio/src/examples/cpp11/timeouts/blocking_udp_client.cpp +0 -155
  320. data/ext/third_party/asio/asio/src/examples/cpp11/timeouts/server.cpp +0 -433
  321. data/ext/third_party/asio/asio/src/examples/cpp11/timers/.gitignore +0 -10
  322. data/ext/third_party/asio/asio/src/examples/cpp11/timers/time_t_timer.cpp +0 -106
  323. data/ext/third_party/asio/asio/src/examples/cpp14/Makefile.am +0 -64
  324. data/ext/third_party/asio/asio/src/examples/cpp14/echo/.gitignore +0 -11
  325. data/ext/third_party/asio/asio/src/examples/cpp14/echo/async_tcp_echo_server.cpp +0 -117
  326. data/ext/third_party/asio/asio/src/examples/cpp14/echo/async_udp_echo_server.cpp +0 -83
  327. data/ext/third_party/asio/asio/src/examples/cpp14/echo/blocking_tcp_echo_client.cpp +0 -55
  328. data/ext/third_party/asio/asio/src/examples/cpp14/echo/blocking_tcp_echo_server.cpp +0 -77
  329. data/ext/third_party/asio/asio/src/examples/cpp14/echo/blocking_udp_echo_client.cpp +0 -59
  330. data/ext/third_party/asio/asio/src/examples/cpp14/echo/blocking_udp_echo_server.cpp +0 -53
  331. data/ext/third_party/asio/asio/src/examples/cpp14/executors/.gitignore +0 -6
  332. data/ext/third_party/asio/asio/src/examples/cpp14/executors/actor.cpp +0 -281
  333. data/ext/third_party/asio/asio/src/examples/cpp14/executors/async_1.cpp +0 -47
  334. data/ext/third_party/asio/asio/src/examples/cpp14/executors/async_2.cpp +0 -68
  335. data/ext/third_party/asio/asio/src/examples/cpp14/executors/bank_account_1.cpp +0 -54
  336. data/ext/third_party/asio/asio/src/examples/cpp14/executors/bank_account_2.cpp +0 -53
  337. data/ext/third_party/asio/asio/src/examples/cpp14/executors/fork_join.cpp +0 -327
  338. data/ext/third_party/asio/asio/src/examples/cpp14/executors/pipeline.cpp +0 -294
  339. data/ext/third_party/asio/asio/src/examples/cpp14/executors/priority_scheduler.cpp +0 -173
  340. data/ext/third_party/asio/asio/src/examples/cpp14/iostreams/.gitignore +0 -11
  341. data/ext/third_party/asio/asio/src/examples/cpp14/iostreams/http_client.cpp +0 -91
  342. data/ext/third_party/asio/asio/src/examples/cpp14/operations/.gitignore +0 -10
  343. data/ext/third_party/asio/asio/src/examples/cpp14/operations/composed_1.cpp +0 -113
  344. data/ext/third_party/asio/asio/src/examples/cpp14/operations/composed_2.cpp +0 -131
  345. data/ext/third_party/asio/asio/src/examples/cpp14/operations/composed_3.cpp +0 -186
  346. data/ext/third_party/asio/asio/src/examples/cpp14/operations/composed_4.cpp +0 -201
  347. data/ext/third_party/asio/asio/src/examples/cpp14/operations/composed_5.cpp +0 -238
  348. data/ext/third_party/asio/asio/src/examples/cpp14/operations/composed_6.cpp +0 -298
  349. data/ext/third_party/asio/asio/src/examples/cpp14/operations/composed_7.cpp +0 -219
  350. data/ext/third_party/asio/asio/src/examples/cpp14/operations/composed_8.cpp +0 -212
  351. data/ext/third_party/asio/asio/src/examples/cpp17/Makefile.am +0 -8
  352. data/ext/third_party/asio/asio/src/examples/cpp17/coroutines_ts/chat_server.cpp +0 -225
  353. data/ext/third_party/asio/asio/src/examples/cpp17/coroutines_ts/echo_server.cpp +0 -76
  354. data/ext/third_party/asio/asio/src/examples/cpp17/coroutines_ts/echo_server_with_default.cpp +0 -78
  355. data/ext/third_party/asio/asio/src/examples/cpp17/coroutines_ts/range_based_for.cpp +0 -107
  356. data/ext/third_party/asio/asio/src/examples/cpp17/coroutines_ts/refactored_echo_server.cpp +0 -85
  357. data/ext/third_party/asio/asio/src/tests/.gitignore +0 -11
  358. data/ext/third_party/asio/asio/src/tests/Makefile.am +0 -432
  359. data/ext/third_party/asio/asio/src/tests/latency/.gitignore +0 -11
  360. data/ext/third_party/asio/asio/src/tests/latency/allocator.hpp +0 -52
  361. data/ext/third_party/asio/asio/src/tests/latency/high_res_clock.hpp +0 -53
  362. data/ext/third_party/asio/asio/src/tests/latency/tcp_client.cpp +0 -124
  363. data/ext/third_party/asio/asio/src/tests/latency/tcp_server.cpp +0 -114
  364. data/ext/third_party/asio/asio/src/tests/latency/udp_client.cpp +0 -104
  365. data/ext/third_party/asio/asio/src/tests/latency/udp_server.cpp +0 -125
  366. data/ext/third_party/asio/asio/src/tests/performance/.gitignore +0 -11
  367. data/ext/third_party/asio/asio/src/tests/performance/client.cpp +0 -286
  368. data/ext/third_party/asio/asio/src/tests/performance/handler_allocator.hpp +0 -112
  369. data/ext/third_party/asio/asio/src/tests/performance/server.cpp +0 -233
  370. data/ext/third_party/asio/asio/src/tests/unit/.gitignore +0 -75
  371. data/ext/third_party/asio/asio/src/tests/unit/archetypes/async_ops.hpp +0 -415
  372. data/ext/third_party/asio/asio/src/tests/unit/archetypes/async_result.hpp +0 -94
  373. data/ext/third_party/asio/asio/src/tests/unit/archetypes/gettable_socket_option.hpp +0 -54
  374. data/ext/third_party/asio/asio/src/tests/unit/archetypes/io_control_command.hpp +0 -32
  375. data/ext/third_party/asio/asio/src/tests/unit/archetypes/settable_socket_option.hpp +0 -49
  376. data/ext/third_party/asio/asio/src/tests/unit/associated_allocator.cpp +0 -25
  377. data/ext/third_party/asio/asio/src/tests/unit/associated_executor.cpp +0 -25
  378. data/ext/third_party/asio/asio/src/tests/unit/async_result.cpp +0 -25
  379. data/ext/third_party/asio/asio/src/tests/unit/awaitable.cpp +0 -25
  380. data/ext/third_party/asio/asio/src/tests/unit/basic_datagram_socket.cpp +0 -25
  381. data/ext/third_party/asio/asio/src/tests/unit/basic_deadline_timer.cpp +0 -25
  382. data/ext/third_party/asio/asio/src/tests/unit/basic_raw_socket.cpp +0 -25
  383. data/ext/third_party/asio/asio/src/tests/unit/basic_seq_packet_socket.cpp +0 -25
  384. data/ext/third_party/asio/asio/src/tests/unit/basic_serial_port.cpp +0 -26
  385. data/ext/third_party/asio/asio/src/tests/unit/basic_signal_set.cpp +0 -25
  386. data/ext/third_party/asio/asio/src/tests/unit/basic_socket.cpp +0 -25
  387. data/ext/third_party/asio/asio/src/tests/unit/basic_socket_acceptor.cpp +0 -25
  388. data/ext/third_party/asio/asio/src/tests/unit/basic_stream_socket.cpp +0 -25
  389. data/ext/third_party/asio/asio/src/tests/unit/basic_streambuf.cpp +0 -25
  390. data/ext/third_party/asio/asio/src/tests/unit/basic_waitable_timer.cpp +0 -25
  391. data/ext/third_party/asio/asio/src/tests/unit/bind_executor.cpp +0 -25
  392. data/ext/third_party/asio/asio/src/tests/unit/buffer.cpp +0 -830
  393. data/ext/third_party/asio/asio/src/tests/unit/buffered_read_stream.cpp +0 -338
  394. data/ext/third_party/asio/asio/src/tests/unit/buffered_stream.cpp +0 -364
  395. data/ext/third_party/asio/asio/src/tests/unit/buffered_write_stream.cpp +0 -353
  396. data/ext/third_party/asio/asio/src/tests/unit/buffers_iterator.cpp +0 -292
  397. data/ext/third_party/asio/asio/src/tests/unit/co_spawn.cpp +0 -25
  398. data/ext/third_party/asio/asio/src/tests/unit/completion_condition.cpp +0 -25
  399. data/ext/third_party/asio/asio/src/tests/unit/compose.cpp +0 -185
  400. data/ext/third_party/asio/asio/src/tests/unit/connect.cpp +0 -1190
  401. data/ext/third_party/asio/asio/src/tests/unit/coroutine.cpp +0 -112
  402. data/ext/third_party/asio/asio/src/tests/unit/deadline_timer.cpp +0 -392
  403. data/ext/third_party/asio/asio/src/tests/unit/defer.cpp +0 -25
  404. data/ext/third_party/asio/asio/src/tests/unit/detached.cpp +0 -25
  405. data/ext/third_party/asio/asio/src/tests/unit/dispatch.cpp +0 -25
  406. data/ext/third_party/asio/asio/src/tests/unit/error.cpp +0 -89
  407. data/ext/third_party/asio/asio/src/tests/unit/execution_context.cpp +0 -25
  408. data/ext/third_party/asio/asio/src/tests/unit/executor.cpp +0 -25
  409. data/ext/third_party/asio/asio/src/tests/unit/executor_work_guard.cpp +0 -25
  410. data/ext/third_party/asio/asio/src/tests/unit/generic/.gitignore +0 -14
  411. data/ext/third_party/asio/asio/src/tests/unit/generic/basic_endpoint.cpp +0 -25
  412. data/ext/third_party/asio/asio/src/tests/unit/generic/datagram_protocol.cpp +0 -263
  413. data/ext/third_party/asio/asio/src/tests/unit/generic/raw_protocol.cpp +0 -263
  414. data/ext/third_party/asio/asio/src/tests/unit/generic/seq_packet_protocol.cpp +0 -205
  415. data/ext/third_party/asio/asio/src/tests/unit/generic/stream_protocol.cpp +0 -248
  416. data/ext/third_party/asio/asio/src/tests/unit/high_resolution_timer.cpp +0 -30
  417. data/ext/third_party/asio/asio/src/tests/unit/io_context.cpp +0 -362
  418. data/ext/third_party/asio/asio/src/tests/unit/io_context_strand.cpp +0 -325
  419. data/ext/third_party/asio/asio/src/tests/unit/ip/.gitignore +0 -27
  420. data/ext/third_party/asio/asio/src/tests/unit/ip/address.cpp +0 -144
  421. data/ext/third_party/asio/asio/src/tests/unit/ip/basic_endpoint.cpp +0 -25
  422. data/ext/third_party/asio/asio/src/tests/unit/ip/basic_resolver.cpp +0 -25
  423. data/ext/third_party/asio/asio/src/tests/unit/ip/basic_resolver_entry.cpp +0 -25
  424. data/ext/third_party/asio/asio/src/tests/unit/ip/basic_resolver_iterator.cpp +0 -25
  425. data/ext/third_party/asio/asio/src/tests/unit/ip/basic_resolver_query.cpp +0 -25
  426. data/ext/third_party/asio/asio/src/tests/unit/ip/host_name.cpp +0 -55
  427. data/ext/third_party/asio/asio/src/tests/unit/ip/icmp.cpp +0 -577
  428. data/ext/third_party/asio/asio/src/tests/unit/ip/multicast.cpp +0 -363
  429. data/ext/third_party/asio/asio/src/tests/unit/ip/network_v4.cpp +0 -314
  430. data/ext/third_party/asio/asio/src/tests/unit/ip/network_v6.cpp +0 -238
  431. data/ext/third_party/asio/asio/src/tests/unit/ip/resolver_query_base.cpp +0 -25
  432. data/ext/third_party/asio/asio/src/tests/unit/ip/tcp.cpp +0 -1346
  433. data/ext/third_party/asio/asio/src/tests/unit/ip/udp.cpp +0 -673
  434. data/ext/third_party/asio/asio/src/tests/unit/ip/unicast.cpp +0 -171
  435. data/ext/third_party/asio/asio/src/tests/unit/ip/v6_only.cpp +0 -135
  436. data/ext/third_party/asio/asio/src/tests/unit/is_read_buffered.cpp +0 -129
  437. data/ext/third_party/asio/asio/src/tests/unit/is_write_buffered.cpp +0 -129
  438. data/ext/third_party/asio/asio/src/tests/unit/local/.gitignore +0 -13
  439. data/ext/third_party/asio/asio/src/tests/unit/local/basic_endpoint.cpp +0 -25
  440. data/ext/third_party/asio/asio/src/tests/unit/local/connect_pair.cpp +0 -76
  441. data/ext/third_party/asio/asio/src/tests/unit/local/datagram_protocol.cpp +0 -242
  442. data/ext/third_party/asio/asio/src/tests/unit/local/stream_protocol.cpp +0 -219
  443. data/ext/third_party/asio/asio/src/tests/unit/packaged_task.cpp +0 -25
  444. data/ext/third_party/asio/asio/src/tests/unit/placeholders.cpp +0 -25
  445. data/ext/third_party/asio/asio/src/tests/unit/posix/.gitignore +0 -14
  446. data/ext/third_party/asio/asio/src/tests/unit/posix/basic_descriptor.cpp +0 -25
  447. data/ext/third_party/asio/asio/src/tests/unit/posix/basic_stream_descriptor.cpp +0 -25
  448. data/ext/third_party/asio/asio/src/tests/unit/posix/descriptor.cpp +0 -25
  449. data/ext/third_party/asio/asio/src/tests/unit/posix/descriptor_base.cpp +0 -25
  450. data/ext/third_party/asio/asio/src/tests/unit/posix/stream_descriptor.cpp +0 -183
  451. data/ext/third_party/asio/asio/src/tests/unit/post.cpp +0 -25
  452. data/ext/third_party/asio/asio/src/tests/unit/read.cpp +0 -4997
  453. data/ext/third_party/asio/asio/src/tests/unit/read_at.cpp +0 -7502
  454. data/ext/third_party/asio/asio/src/tests/unit/read_until.cpp +0 -1658
  455. data/ext/third_party/asio/asio/src/tests/unit/redirect_error.cpp +0 -25
  456. data/ext/third_party/asio/asio/src/tests/unit/serial_port.cpp +0 -173
  457. data/ext/third_party/asio/asio/src/tests/unit/serial_port_base.cpp +0 -99
  458. data/ext/third_party/asio/asio/src/tests/unit/signal_set.cpp +0 -95
  459. data/ext/third_party/asio/asio/src/tests/unit/socket_base.cpp +0 -650
  460. data/ext/third_party/asio/asio/src/tests/unit/ssl/.gitignore +0 -15
  461. data/ext/third_party/asio/asio/src/tests/unit/ssl/context.cpp +0 -25
  462. data/ext/third_party/asio/asio/src/tests/unit/ssl/context_base.cpp +0 -25
  463. data/ext/third_party/asio/asio/src/tests/unit/ssl/error.cpp +0 -25
  464. data/ext/third_party/asio/asio/src/tests/unit/ssl/host_name_verification.cpp +0 -25
  465. data/ext/third_party/asio/asio/src/tests/unit/ssl/rfc2818_verification.cpp +0 -25
  466. data/ext/third_party/asio/asio/src/tests/unit/ssl/stream.cpp +0 -191
  467. data/ext/third_party/asio/asio/src/tests/unit/ssl/stream_base.cpp +0 -25
  468. data/ext/third_party/asio/asio/src/tests/unit/steady_timer.cpp +0 -30
  469. data/ext/third_party/asio/asio/src/tests/unit/strand.cpp +0 -263
  470. data/ext/third_party/asio/asio/src/tests/unit/streambuf.cpp +0 -62
  471. data/ext/third_party/asio/asio/src/tests/unit/system_context.cpp +0 -30
  472. data/ext/third_party/asio/asio/src/tests/unit/system_executor.cpp +0 -30
  473. data/ext/third_party/asio/asio/src/tests/unit/system_timer.cpp +0 -399
  474. data/ext/third_party/asio/asio/src/tests/unit/this_coro.cpp +0 -25
  475. data/ext/third_party/asio/asio/src/tests/unit/thread.cpp +0 -25
  476. data/ext/third_party/asio/asio/src/tests/unit/time_traits.cpp +0 -25
  477. data/ext/third_party/asio/asio/src/tests/unit/ts/.gitignore +0 -17
  478. data/ext/third_party/asio/asio/src/tests/unit/ts/buffer.cpp +0 -30
  479. data/ext/third_party/asio/asio/src/tests/unit/ts/executor.cpp +0 -30
  480. data/ext/third_party/asio/asio/src/tests/unit/ts/internet.cpp +0 -30
  481. data/ext/third_party/asio/asio/src/tests/unit/ts/io_context.cpp +0 -30
  482. data/ext/third_party/asio/asio/src/tests/unit/ts/net.cpp +0 -30
  483. data/ext/third_party/asio/asio/src/tests/unit/ts/netfwd.cpp +0 -33
  484. data/ext/third_party/asio/asio/src/tests/unit/ts/socket.cpp +0 -30
  485. data/ext/third_party/asio/asio/src/tests/unit/ts/timer.cpp +0 -30
  486. data/ext/third_party/asio/asio/src/tests/unit/unit_test.hpp +0 -175
  487. data/ext/third_party/asio/asio/src/tests/unit/use_awaitable.cpp +0 -25
  488. data/ext/third_party/asio/asio/src/tests/unit/use_future.cpp +0 -670
  489. data/ext/third_party/asio/asio/src/tests/unit/uses_executor.cpp +0 -25
  490. data/ext/third_party/asio/asio/src/tests/unit/wait_traits.cpp +0 -25
  491. data/ext/third_party/asio/asio/src/tests/unit/windows/.gitignore +0 -18
  492. data/ext/third_party/asio/asio/src/tests/unit/windows/basic_object_handle.cpp +0 -25
  493. data/ext/third_party/asio/asio/src/tests/unit/windows/basic_overlapped_handle.cpp +0 -25
  494. data/ext/third_party/asio/asio/src/tests/unit/windows/basic_random_access_handle.cpp +0 -25
  495. data/ext/third_party/asio/asio/src/tests/unit/windows/basic_stream_handle.cpp +0 -25
  496. data/ext/third_party/asio/asio/src/tests/unit/windows/object_handle.cpp +0 -130
  497. data/ext/third_party/asio/asio/src/tests/unit/windows/overlapped_handle.cpp +0 -26
  498. data/ext/third_party/asio/asio/src/tests/unit/windows/overlapped_ptr.cpp +0 -107
  499. data/ext/third_party/asio/asio/src/tests/unit/windows/random_access_handle.cpp +0 -155
  500. data/ext/third_party/asio/asio/src/tests/unit/windows/stream_handle.cpp +0 -148
  501. data/ext/third_party/asio/asio/src/tests/unit/write.cpp +0 -4904
  502. data/ext/third_party/asio/asio/src/tests/unit/write_at.cpp +0 -7563
  503. data/ext/third_party/asio/asio/src/tools/handlerviz.pl +0 -299
  504. data/ext/third_party/gsl/tests/CMakeLists.txt +0 -267
  505. data/ext/third_party/gsl/tests/CMakeLists.txt.in +0 -14
  506. data/ext/third_party/gsl/tests/algorithm_tests.cpp +0 -227
  507. data/ext/third_party/gsl/tests/assertion_tests.cpp +0 -61
  508. data/ext/third_party/gsl/tests/at_tests.cpp +0 -135
  509. data/ext/third_party/gsl/tests/bounds_tests.cpp +0 -102
  510. data/ext/third_party/gsl/tests/byte_tests.cpp +0 -129
  511. data/ext/third_party/gsl/tests/multi_span_tests.cpp +0 -1866
  512. data/ext/third_party/gsl/tests/no_exception_ensure_tests.cpp +0 -48
  513. data/ext/third_party/gsl/tests/notnull_tests.cpp +0 -535
  514. data/ext/third_party/gsl/tests/owner_tests.cpp +0 -43
  515. data/ext/third_party/gsl/tests/span_compatibility_tests.cpp +0 -1021
  516. data/ext/third_party/gsl/tests/span_ext_tests.cpp +0 -360
  517. data/ext/third_party/gsl/tests/span_tests.cpp +0 -1244
  518. data/ext/third_party/gsl/tests/strict_notnull_tests.cpp +0 -190
  519. data/ext/third_party/gsl/tests/strided_span_tests.cpp +0 -790
  520. data/ext/third_party/gsl/tests/string_span_tests.cpp +0 -1217
  521. data/ext/third_party/gsl/tests/utils_tests.cpp +0 -129
  522. data/ext/third_party/http_parser/contrib/parsertrace.c +0 -157
  523. data/ext/third_party/http_parser/contrib/url_parser.c +0 -47
  524. data/ext/third_party/http_parser/fuzzers/fuzz_parser.c +0 -26
  525. data/ext/third_party/http_parser/fuzzers/fuzz_url.c +0 -14
  526. data/ext/third_party/json/contrib/nlohmann.cpp +0 -48
  527. data/ext/third_party/json/contrib/nlohmann/from_value.hpp +0 -62
  528. data/ext/third_party/json/contrib/nlohmann/json.hpp +0 -18928
  529. data/ext/third_party/json/contrib/nlohmann/to_value.hpp +0 -109
  530. data/ext/third_party/json/doc/Advanced-Use-Cases.md +0 -83
  531. data/ext/third_party/json/doc/Batteries-Included.md +0 -212
  532. data/ext/third_party/json/doc/Binding-Traits.md +0 -319
  533. data/ext/third_party/json/doc/Changelog.md +0 -31
  534. data/ext/third_party/json/doc/Common-Use-Cases.md +0 -148
  535. data/ext/third_party/json/doc/Design-Decisions.md +0 -36
  536. data/ext/third_party/json/doc/Events-Interface.md +0 -140
  537. data/ext/third_party/json/doc/Getting-Started.md +0 -19
  538. data/ext/third_party/json/doc/Instance-Sharing.md +0 -163
  539. data/ext/third_party/json/doc/Interoperability.md +0 -75
  540. data/ext/third_party/json/doc/Overview.md +0 -24
  541. data/ext/third_party/json/doc/Overview.png +0 -0
  542. data/ext/third_party/json/doc/Parser-Interface.md +0 -84
  543. data/ext/third_party/json/doc/README.md +0 -78
  544. data/ext/third_party/json/doc/Scratchpad.md +0 -25
  545. data/ext/third_party/json/doc/Type-Traits.md +0 -364
  546. data/ext/third_party/json/doc/Types.png +0 -0
  547. data/ext/third_party/json/doc/Value-Class.md +0 -525
  548. data/ext/third_party/json/src/example/json/CMakeLists.txt +0 -67
  549. data/ext/third_party/json/src/example/json/cbor_to_jaxn.cpp +0 -18
  550. data/ext/third_party/json/src/example/json/cbor_to_json.cpp +0 -18
  551. data/ext/third_party/json/src/example/json/cbor_to_msgpack.cpp +0 -18
  552. data/ext/third_party/json/src/example/json/cbor_to_pretty_jaxn.cpp +0 -18
  553. data/ext/third_party/json/src/example/json/cbor_to_pretty_json.cpp +0 -18
  554. data/ext/third_party/json/src/example/json/cbor_to_ubjson.cpp +0 -18
  555. data/ext/third_party/json/src/example/json/jaxn_to_cbor.cpp +0 -18
  556. data/ext/third_party/json/src/example/json/jaxn_to_cplusplus.cpp +0 -249
  557. data/ext/third_party/json/src/example/json/jaxn_to_jaxn.cpp +0 -18
  558. data/ext/third_party/json/src/example/json/jaxn_to_msgpack.cpp +0 -18
  559. data/ext/third_party/json/src/example/json/jaxn_to_pretty_jaxn.cpp +0 -18
  560. data/ext/third_party/json/src/example/json/jaxn_to_ubjson.cpp +0 -18
  561. data/ext/third_party/json/src/example/json/json_to_cbor.cpp +0 -18
  562. data/ext/third_party/json/src/example/json/json_to_json.cpp +0 -18
  563. data/ext/third_party/json/src/example/json/json_to_msgpack.cpp +0 -18
  564. data/ext/third_party/json/src/example/json/json_to_pretty_json.cpp +0 -18
  565. data/ext/third_party/json/src/example/json/json_to_ubjson.cpp +0 -18
  566. data/ext/third_party/json/src/example/json/msgpack_to_cbor.cpp +0 -18
  567. data/ext/third_party/json/src/example/json/msgpack_to_jaxn.cpp +0 -18
  568. data/ext/third_party/json/src/example/json/msgpack_to_json.cpp +0 -18
  569. data/ext/third_party/json/src/example/json/msgpack_to_pretty_jaxn.cpp +0 -18
  570. data/ext/third_party/json/src/example/json/msgpack_to_pretty_json.cpp +0 -18
  571. data/ext/third_party/json/src/example/json/msgpack_to_ubjson.cpp +0 -18
  572. data/ext/third_party/json/src/example/json/printf_doubles.cpp +0 -51
  573. data/ext/third_party/json/src/example/json/ubjson_to_cbor.cpp +0 -18
  574. data/ext/third_party/json/src/example/json/ubjson_to_jaxn.cpp +0 -18
  575. data/ext/third_party/json/src/example/json/ubjson_to_json.cpp +0 -18
  576. data/ext/third_party/json/src/example/json/ubjson_to_msgpack.cpp +0 -18
  577. data/ext/third_party/json/src/example/json/ubjson_to_pretty_jaxn.cpp +0 -18
  578. data/ext/third_party/json/src/example/json/ubjson_to_pretty_json.cpp +0 -18
  579. data/ext/third_party/json/src/example/json/validate_event_order.cpp +0 -27
  580. data/ext/third_party/json/src/example/json/validate_integer.cpp +0 -56
  581. data/ext/third_party/json/src/perf/json/bench_mark.hpp +0 -43
  582. data/ext/third_party/json/src/perf/json/benchmark.cpp +0 -34
  583. data/ext/third_party/json/src/perf/json/parse_file.cpp +0 -17
  584. data/ext/third_party/json/src/perf/json/pretty_print_file.cpp +0 -19
  585. data/ext/third_party/json/src/perf/json/print_double.cpp +0 -34
  586. data/ext/third_party/json/src/perf/json/print_file.cpp +0 -19
  587. data/ext/third_party/json/src/perf/json/sizes.cpp +0 -24
  588. data/ext/third_party/json/src/perf/json/syntax_only.cpp +0 -27
  589. data/ext/third_party/json/src/test/json/CMakeLists.txt +0 -97
  590. data/ext/third_party/json/src/test/json/big_list_of_naughty_strings.cpp +0 -43
  591. data/ext/third_party/json/src/test/json/binding_array.cpp +0 -549
  592. data/ext/third_party/json/src/test/json/binding_factory.cpp +0 -265
  593. data/ext/third_party/json/src/test/json/binding_object.cpp +0 -208
  594. data/ext/third_party/json/src/test/json/binding_versions.cpp +0 -95
  595. data/ext/third_party/json/src/test/json/cbor.cpp +0 -149
  596. data/ext/third_party/json/src/test/json/cbor_parts_parser.cpp +0 -36
  597. data/ext/third_party/json/src/test/json/contrib_diff.cpp +0 -43
  598. data/ext/third_party/json/src/test/json/contrib_get.cpp +0 -42
  599. data/ext/third_party/json/src/test/json/contrib_patch_add.cpp +0 -75
  600. data/ext/third_party/json/src/test/json/contrib_patch_copy.cpp +0 -113
  601. data/ext/third_party/json/src/test/json/contrib_patch_move.cpp +0 -97
  602. data/ext/third_party/json/src/test/json/contrib_patch_remove.cpp +0 -85
  603. data/ext/third_party/json/src/test/json/contrib_patch_replace.cpp +0 -79
  604. data/ext/third_party/json/src/test/json/contrib_patch_test.cpp +0 -69
  605. data/ext/third_party/json/src/test/json/contrib_position.cpp +0 -48
  606. data/ext/third_party/json/src/test/json/contrib_reference.cpp +0 -44
  607. data/ext/third_party/json/src/test/json/contrib_schema.cpp +0 -132
  608. data/ext/third_party/json/src/test/json/contrib_traits.cpp +0 -258
  609. data/ext/third_party/json/src/test/json/double.cpp +0 -182
  610. data/ext/third_party/json/src/test/json/enable_implicit_constructor.cpp +0 -54
  611. data/ext/third_party/json/src/test/json/escape.cpp +0 -42
  612. data/ext/third_party/json/src/test/json/events_binary_to.cpp +0 -56
  613. data/ext/third_party/json/src/test/json/events_compare.cpp +0 -433
  614. data/ext/third_party/json/src/test/json/events_debug.cpp +0 -24
  615. data/ext/third_party/json/src/test/json/events_hash.cpp +0 -65
  616. data/ext/third_party/json/src/test/json/events_to_stream.cpp +0 -28
  617. data/ext/third_party/json/src/test/json/events_to_string.cpp +0 -25
  618. data/ext/third_party/json/src/test/json/include_json.cpp +0 -14
  619. data/ext/third_party/json/src/test/json/integer.cpp +0 -118
  620. data/ext/third_party/json/src/test/json/jaxn_ostream.cpp +0 -76
  621. data/ext/third_party/json/src/test/json/jaxn_parse.cpp +0 -239
  622. data/ext/third_party/json/src/test/json/jaxn_parts_parser.cpp +0 -220
  623. data/ext/third_party/json/src/test/json/json_ostream.cpp +0 -102
  624. data/ext/third_party/json/src/test/json/json_parse.cpp +0 -153
  625. data/ext/third_party/json/src/test/json/json_parts_parser.cpp +0 -124
  626. data/ext/third_party/json/src/test/json/json_pointer.cpp +0 -176
  627. data/ext/third_party/json/src/test/json/key_camel_case_to_snake_case.cpp +0 -38
  628. data/ext/third_party/json/src/test/json/key_snake_case_to_camel_case.cpp +0 -33
  629. data/ext/third_party/json/src/test/json/literal.cpp +0 -18
  630. data/ext/third_party/json/src/test/json/main.hpp +0 -20
  631. data/ext/third_party/json/src/test/json/make_events.hpp +0 -362
  632. data/ext/third_party/json/src/test/json/msgpack.cpp +0 -136
  633. data/ext/third_party/json/src/test/json/object_construction.cpp +0 -167
  634. data/ext/third_party/json/src/test/json/opaque_pointer.cpp +0 -192
  635. data/ext/third_party/json/src/test/json/operators.cpp +0 -494
  636. data/ext/third_party/json/src/test/json/optional.cpp +0 -79
  637. data/ext/third_party/json/src/test/json/public_base.cpp +0 -142
  638. data/ext/third_party/json/src/test/json/self_contained.cpp +0 -106
  639. data/ext/third_party/json/src/test/json/sha256.cpp +0 -38
  640. data/ext/third_party/json/src/test/json/string_view.cpp +0 -70
  641. data/ext/third_party/json/src/test/json/temporary_parsing.cpp +0 -339
  642. data/ext/third_party/json/src/test/json/test.hpp +0 -74
  643. data/ext/third_party/json/src/test/json/test_events.hpp +0 -250
  644. data/ext/third_party/json/src/test/json/test_types.hpp +0 -557
  645. data/ext/third_party/json/src/test/json/test_unhex.hpp +0 -42
  646. data/ext/third_party/json/src/test/json/type.cpp +0 -35
  647. data/ext/third_party/json/src/test/json/ubjson.cpp +0 -119
  648. data/ext/third_party/json/src/test/json/uri_fragment.cpp +0 -52
  649. data/ext/third_party/json/src/test/json/validate_event_interfaces.cpp +0 -177
  650. data/ext/third_party/json/src/test/json/validate_utf8.cpp +0 -37
  651. data/ext/third_party/json/src/test/json/value_access.cpp +0 -144
  652. data/ext/third_party/json/src/test/json/value_basics.cpp +0 -241
  653. data/ext/third_party/json/src/test/json/value_create.cpp +0 -372
  654. data/ext/third_party/json/src/test/json/value_ptr.cpp +0 -33
  655. data/ext/third_party/json/src/test/json/value_subscript.cpp +0 -89
  656. data/ext/third_party/json/src/test/json/with_arguments.cpp +0 -98
  657. data/ext/third_party/json/tests/blns.json +0 -496
  658. data/ext/third_party/json/tests/canada.json +0 -9
  659. data/ext/third_party/json/tests/citm_catalog.json +0 -50469
  660. data/ext/third_party/json/tests/draft4/additionalItems.json +0 -82
  661. data/ext/third_party/json/tests/draft4/additionalProperties.json +0 -88
  662. data/ext/third_party/json/tests/draft4/allOf.json +0 -112
  663. data/ext/third_party/json/tests/draft4/anyOf.json +0 -68
  664. data/ext/third_party/json/tests/draft4/default.json +0 -49
  665. data/ext/third_party/json/tests/draft4/definitions.json +0 -32
  666. data/ext/third_party/json/tests/draft4/dependencies.json +0 -113
  667. data/ext/third_party/json/tests/draft4/enum.json +0 -72
  668. data/ext/third_party/json/tests/draft4/items.json +0 -46
  669. data/ext/third_party/json/tests/draft4/maxItems.json +0 -28
  670. data/ext/third_party/json/tests/draft4/maxLength.json +0 -33
  671. data/ext/third_party/json/tests/draft4/maxProperties.json +0 -28
  672. data/ext/third_party/json/tests/draft4/maximum.json +0 -42
  673. data/ext/third_party/json/tests/draft4/minItems.json +0 -28
  674. data/ext/third_party/json/tests/draft4/minLength.json +0 -33
  675. data/ext/third_party/json/tests/draft4/minProperties.json +0 -28
  676. data/ext/third_party/json/tests/draft4/minimum.json +0 -42
  677. data/ext/third_party/json/tests/draft4/multipleOf.json +0 -60
  678. data/ext/third_party/json/tests/draft4/not.json +0 -96
  679. data/ext/third_party/json/tests/draft4/oneOf.json +0 -68
  680. data/ext/third_party/json/tests/draft4/optional/bignum.json +0 -107
  681. data/ext/third_party/json/tests/draft4/optional/format.json +0 -148
  682. data/ext/third_party/json/tests/draft4/optional/zeroTerminatedFloats.json +0 -15
  683. data/ext/third_party/json/tests/draft4/pattern.json +0 -34
  684. data/ext/third_party/json/tests/draft4/patternProperties.json +0 -110
  685. data/ext/third_party/json/tests/draft4/properties.json +0 -92
  686. data/ext/third_party/json/tests/draft4/ref.json +0 -179
  687. data/ext/third_party/json/tests/draft4/refRemote.json +0 -74
  688. data/ext/third_party/json/tests/draft4/required.json +0 -44
  689. data/ext/third_party/json/tests/draft4/type.json +0 -345
  690. data/ext/third_party/json/tests/draft4/uniqueItems.json +0 -79
  691. data/ext/third_party/json/tests/taocpp/binary.jaxn +0 -4
  692. data/ext/third_party/json/tests/taocpp/dateTime.json +0 -108
  693. data/ext/third_party/json/tests/taocpp/make_events.cbor +0 -0
  694. data/ext/third_party/json/tests/taocpp/number.json +0 -682
  695. data/ext/third_party/json/tests/taocpp/position.json +0 -8
  696. data/ext/third_party/json/tests/taocpp/schema.json +0 -378
  697. data/ext/third_party/json/tests/twitter.json +0 -15482
  698. data/ext/third_party/snappy/testdata/alice29.txt +0 -3609
  699. data/ext/third_party/snappy/testdata/asyoulik.txt +0 -4122
  700. data/ext/third_party/snappy/testdata/baddata1.snappy +0 -0
  701. data/ext/third_party/snappy/testdata/baddata2.snappy +0 -0
  702. data/ext/third_party/snappy/testdata/baddata3.snappy +0 -0
  703. data/ext/third_party/snappy/testdata/fireworks.jpeg +0 -0
  704. data/ext/third_party/snappy/testdata/geo.protodata +0 -0
  705. data/ext/third_party/snappy/testdata/html +0 -1
  706. data/ext/third_party/snappy/testdata/html_x_4 +0 -1
  707. data/ext/third_party/snappy/testdata/kppkn.gtb +0 -0
  708. data/ext/third_party/snappy/testdata/lcet10.txt +0 -7519
  709. data/ext/third_party/snappy/testdata/paper-100k.pdf +2 -600
  710. data/ext/third_party/snappy/testdata/plrabn12.txt +0 -10699
  711. data/ext/third_party/snappy/testdata/urls.10K +0 -10000
  712. data/ext/third_party/spdlog/bench/CMakeLists.txt +0 -25
  713. data/ext/third_party/spdlog/bench/async_bench.cpp +0 -179
  714. data/ext/third_party/spdlog/bench/bench.cpp +0 -238
  715. data/ext/third_party/spdlog/bench/formatter-bench.cpp +0 -80
  716. data/ext/third_party/spdlog/bench/latency.cpp +0 -166
  717. data/ext/third_party/spdlog/bench/utils.h +0 -34
  718. data/ext/third_party/spdlog/example/CMakeLists.txt +0 -23
  719. data/ext/third_party/spdlog/example/example.cpp +0 -282
  720. data/ext/third_party/spdlog/logos/jetbrains-variant-4.svg +0 -43
  721. data/ext/third_party/spdlog/scripts/extract_version.py +0 -17
  722. data/ext/third_party/spdlog/scripts/format.sh +0 -16
  723. data/ext/third_party/spdlog/tests/CMakeLists.txt +0 -70
  724. data/ext/third_party/spdlog/tests/catch.hpp +0 -15372
  725. data/ext/third_party/spdlog/tests/catch.license +0 -23
  726. data/ext/third_party/spdlog/tests/includes.h +0 -26
  727. data/ext/third_party/spdlog/tests/main.cpp +0 -2
  728. data/ext/third_party/spdlog/tests/test_async.cpp +0 -188
  729. data/ext/third_party/spdlog/tests/test_backtrace.cpp +0 -65
  730. data/ext/third_party/spdlog/tests/test_cfg.cpp +0 -93
  731. data/ext/third_party/spdlog/tests/test_create_dir.cpp +0 -80
  732. data/ext/third_party/spdlog/tests/test_daily_logger.cpp +0 -149
  733. data/ext/third_party/spdlog/tests/test_dup_filter.cpp +0 -88
  734. data/ext/third_party/spdlog/tests/test_errors.cpp +0 -118
  735. data/ext/third_party/spdlog/tests/test_eventlog.cpp +0 -71
  736. data/ext/third_party/spdlog/tests/test_file_helper.cpp +0 -102
  737. data/ext/third_party/spdlog/tests/test_file_logging.cpp +0 -98
  738. data/ext/third_party/spdlog/tests/test_fmt_helper.cpp +0 -86
  739. data/ext/third_party/spdlog/tests/test_macros.cpp +0 -60
  740. data/ext/third_party/spdlog/tests/test_misc.cpp +0 -271
  741. data/ext/third_party/spdlog/tests/test_mpmc_q.cpp +0 -106
  742. data/ext/third_party/spdlog/tests/test_pattern_formatter.cpp +0 -443
  743. data/ext/third_party/spdlog/tests/test_registry.cpp +0 -116
  744. data/ext/third_party/spdlog/tests/test_sink.h +0 -79
  745. data/ext/third_party/spdlog/tests/test_stdout_api.cpp +0 -98
  746. data/ext/third_party/spdlog/tests/test_systemd.cpp +0 -15
  747. data/ext/third_party/spdlog/tests/test_time_point.cpp +0 -36
  748. data/ext/third_party/spdlog/tests/utils.cpp +0 -125
  749. data/ext/third_party/spdlog/tests/utils.h +0 -18
@@ -1,43 +0,0 @@
1
- ///////////////////////////////////////////////////////////////////////////////
2
- //
3
- // Copyright (c) 2015 Microsoft Corporation. All rights reserved.
4
- //
5
- // This code is licensed under the MIT License (MIT).
6
- //
7
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
10
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
11
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
12
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
13
- // THE SOFTWARE.
14
- //
15
- ///////////////////////////////////////////////////////////////////////////////
16
-
17
- #include <gtest/gtest.h>
18
-
19
- #include <gsl/pointers> // for owner
20
-
21
- using namespace gsl;
22
-
23
- GSL_SUPPRESS(f.23) // NO-FORMAT: attribute
24
- void f(int* i) { *i += 1; }
25
-
26
- TEST(owner_tests, basic_test)
27
- {
28
- owner<int*> p = new int(120);
29
- EXPECT_TRUE(*p == 120);
30
- f(p);
31
- EXPECT_TRUE(*p == 121);
32
- delete p;
33
- }
34
-
35
- TEST(owner_tests, check_pointer_constraint)
36
- {
37
- #ifdef CONFIRM_COMPILATION_ERRORS
38
- {
39
- owner<int> integerTest = 10;
40
- owner<std::shared_ptr<int>> sharedPtrTest(new int(10));
41
- }
42
- #endif
43
- }
@@ -1,1021 +0,0 @@
1
- ///////////////////////////////////////////////////////////////////////////////
2
- //
3
- // Copyright (c) 2015 Microsoft Corporation. All rights reserved.
4
- //
5
- // This code is licensed under the MIT License (MIT).
6
- //
7
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
10
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
11
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
12
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
13
- // THE SOFTWARE.
14
- //
15
- ///////////////////////////////////////////////////////////////////////////////
16
-
17
- #include <gtest/gtest.h>
18
-
19
- #include <gsl/gsl_byte> // for byte
20
- #include <gsl/span> // for span, span_iterator, operator==, operator!=
21
-
22
- #include <array> // for array
23
- #include <cstddef> // for ptrdiff_t
24
- #include <iterator> // for reverse_iterator, operator-, operator==
25
- #include <type_traits> // for integral_constant<>::value, is_default_co...
26
- #include <utility>
27
- #include <vector> // for vector
28
-
29
- using namespace std;
30
- using namespace gsl;
31
-
32
- // Below are tests that verify the gsl interface support the same things as the std
33
- // Ranges and Concepts support need to be added later.
34
-
35
- struct Base
36
- {
37
- };
38
- struct Derived : Base
39
- {
40
- };
41
- static_assert(std::is_convertible<Derived*, Base*>::value, "std::is_convertible<Derived*, Base*>");
42
- static_assert(!std::is_convertible<Derived (*)[], Base (*)[]>::value,
43
- "!std::is_convertible<Derived(*)[], Base(*)[]>");
44
-
45
- // int*(*) [], int const* const(*)[] was identified as an issue in CWG330 and the resolution was
46
- // provided with N4261.
47
- template <class T = int>
48
- void ArrayConvertibilityCheck()
49
- {
50
- #if __cplusplus >= 201703l
51
- if constexpr (std::is_convertible<T*(*) [], T const* const(*)[]>::value)
52
- {
53
- std::array<T*, 3> stl_nullptr{{nullptr, nullptr, nullptr}};
54
- gsl::span<const T* const> sp_const_nullptr_1{stl_nullptr};
55
- EXPECT_TRUE(sp_const_nullptr_1.data() == stl_nullptr.data());
56
- EXPECT_TRUE(sp_const_nullptr_1.size() == 3);
57
-
58
- span<const T* const> sp_const_nullptr_2{std::as_const(stl_nullptr)};
59
- EXPECT_TRUE(sp_const_nullptr_2.data() == stl_nullptr.data());
60
- EXPECT_TRUE(sp_const_nullptr_2.size() == 3);
61
-
62
- static_assert(std::is_same<decltype(span{stl_nullptr}), span<T*, 3>>::value,
63
- "std::is_same< decltype(span{stl_nullptr}), span<T*, 3>>::value");
64
- static_assert(
65
- std::is_same<decltype(span{std::as_const(stl_nullptr)}), span<T* const, 3>>::value,
66
- "std::is_same< decltype(span{std::as_const(stl_nullptr)}), span<T* const, "
67
- "3>>::value");
68
- }
69
- #endif
70
- }
71
-
72
- TEST(span_compatibility_tests, assertion_tests)
73
- {
74
- int arr[3]{10, 20, 30};
75
- std::array<int, 3> stl{{100, 200, 300}};
76
-
77
- ArrayConvertibilityCheck();
78
-
79
- {
80
- gsl::span<int> sp_dyn;
81
- EXPECT_TRUE(sp_dyn.data() == nullptr);
82
- EXPECT_TRUE(sp_dyn.size() == 0);
83
- EXPECT_TRUE(sp_dyn.empty());
84
- }
85
- {
86
- gsl::span<int, 0> sp_zero;
87
- EXPECT_TRUE(sp_zero.data() == nullptr);
88
- EXPECT_TRUE(sp_zero.size() == 0);
89
- EXPECT_TRUE(sp_zero.empty());
90
-
91
- gsl::span<int> sp_dyn_a(arr, 3);
92
- gsl::span<int> sp_dyn_b(begin(arr), 3);
93
- EXPECT_TRUE(sp_dyn_a.data() == std::begin(arr));
94
- EXPECT_TRUE(sp_dyn_b.data() == std::begin(arr));
95
- EXPECT_TRUE(sp_dyn_a.size() == 3);
96
- EXPECT_TRUE(sp_dyn_b.size() == 3);
97
-
98
- gsl::span<int, 3> sp_three_a(arr, 3);
99
- gsl::span<int, 3> sp_three_b(begin(arr), 3);
100
- EXPECT_TRUE(sp_three_a.data() == std::begin(arr));
101
- EXPECT_TRUE(sp_three_b.data() == std::begin(arr));
102
- EXPECT_TRUE(sp_three_a.size() == 3);
103
- EXPECT_TRUE(sp_three_b.size() == 3);
104
-
105
- gsl::span<const int> sp_const_a(arr, 3);
106
- gsl::span<const int> sp_const_b(begin(arr), 3);
107
- EXPECT_TRUE(sp_const_a.data() == std::begin(arr));
108
- EXPECT_TRUE(sp_const_b.data() == std::begin(arr));
109
- EXPECT_TRUE(sp_const_a.size() == 3);
110
- EXPECT_TRUE(sp_const_b.size() == 3);
111
-
112
- #if __cplusplus >= 201703l
113
- gsl::span<const int> sp_const_c(std::as_const(arr), 3);
114
- EXPECT_TRUE(sp_const_c.data() == std::begin(arr));
115
- EXPECT_TRUE(sp_const_c.size() == 3);
116
- #endif // __cplusplus >= 201703l
117
-
118
- gsl::span<const int> sp_const_d(cbegin(arr), 3);
119
- EXPECT_TRUE(sp_const_d.data() == std::begin(arr));
120
- EXPECT_TRUE(sp_const_d.size() == 3);
121
- }
122
- {
123
- gsl::span<int> sp_dyn_a(begin(arr), std::end(arr));
124
- EXPECT_TRUE(sp_dyn_a.data() == std::begin(arr));
125
- EXPECT_TRUE(sp_dyn_a.size() == 3);
126
-
127
- gsl::span<int, 3> sp_three_a(begin(arr), std::end(arr));
128
- EXPECT_TRUE(sp_three_a.data() == std::begin(arr));
129
- EXPECT_TRUE(sp_three_a.size() == 3);
130
-
131
- gsl::span<const int> sp_const_a(begin(arr), std::end(arr));
132
- gsl::span<const int> sp_const_b(begin(arr), std::cend(arr));
133
- gsl::span<const int> sp_const_c(cbegin(arr), std::end(arr));
134
- gsl::span<const int> sp_const_d(cbegin(arr), std::cend(arr));
135
- EXPECT_TRUE(sp_const_a.data() == std::begin(arr));
136
- EXPECT_TRUE(sp_const_b.data() == std::begin(arr));
137
- EXPECT_TRUE(sp_const_c.data() == std::begin(arr));
138
- EXPECT_TRUE(sp_const_d.data() == std::begin(arr));
139
- EXPECT_TRUE(sp_const_a.size() == 3);
140
- EXPECT_TRUE(sp_const_b.size() == 3);
141
- EXPECT_TRUE(sp_const_c.size() == 3);
142
- EXPECT_TRUE(sp_const_d.size() == 3);
143
- }
144
- {
145
- gsl::span<int> sp_dyn_a(arr);
146
- gsl::span<int> sp_dyn_b(stl);
147
- gsl::span<int> sp_dyn_c{stl};
148
- gsl::span<const int> sp_dyn_d{stl};
149
- EXPECT_TRUE(sp_dyn_a.data() == std::begin(arr));
150
- EXPECT_TRUE(sp_dyn_b.data() == stl.data());
151
- EXPECT_TRUE(sp_dyn_a.size() == 3);
152
- EXPECT_TRUE(sp_dyn_b.size() == 3);
153
-
154
- gsl::span<int, 3> sp_three_a(arr);
155
- gsl::span<int, 3> sp_three_b(stl);
156
- EXPECT_TRUE(sp_three_a.data() == std::begin(arr));
157
- EXPECT_TRUE(sp_three_b.data() == stl.data());
158
- EXPECT_TRUE(sp_three_a.size() == 3);
159
- EXPECT_TRUE(sp_three_b.size() == 3);
160
-
161
- gsl::span<const int> sp_const_w(arr);
162
- gsl::span<const int> sp_const_y(stl);
163
- EXPECT_TRUE(sp_const_w.data() == std::begin(arr));
164
- EXPECT_TRUE(sp_const_y.data() == stl.data());
165
- EXPECT_TRUE(sp_const_w.size() == 3);
166
- EXPECT_TRUE(sp_const_y.size() == 3);
167
-
168
- #if __cplusplus >= 201703l
169
- gsl::span<const int> sp_const_x(std::as_const(arr));
170
- EXPECT_TRUE(sp_const_x.data() == std::begin(arr));
171
- EXPECT_TRUE(sp_const_x.size() == 3);
172
-
173
- gsl::span<const int> sp_const_z(std::as_const(stl));
174
- EXPECT_TRUE(sp_const_z.data() == stl.data());
175
- EXPECT_TRUE(sp_const_z.size() == 3);
176
- #endif // __cplusplus >= 201703l
177
- }
178
- {
179
- const gsl::span<int> orig_dyn(arr);
180
- const gsl::span<int, 3> orig_three(arr);
181
- const gsl::span<const int> orig_const_dyn(arr);
182
- const gsl::span<const int, 3> orig_const_three(arr);
183
-
184
- gsl::span<int> sp_a(orig_dyn);
185
- gsl::span<int> sp_b(orig_three);
186
-
187
- gsl::span<int, 3> sp_c(orig_three);
188
-
189
- gsl::span<const int> sp_d(orig_dyn);
190
- gsl::span<const int> sp_e(orig_three);
191
- gsl::span<const int> sp_f(orig_const_dyn);
192
- gsl::span<const int> sp_g(orig_const_three);
193
-
194
- gsl::span<const int, 3> sp_h(orig_three);
195
- gsl::span<const int, 3> sp_i(orig_const_three);
196
-
197
- EXPECT_TRUE(sp_a.data() == std::begin(arr));
198
- EXPECT_TRUE(sp_b.data() == std::begin(arr));
199
- EXPECT_TRUE(sp_c.data() == std::begin(arr));
200
- EXPECT_TRUE(sp_d.data() == std::begin(arr));
201
- EXPECT_TRUE(sp_e.data() == std::begin(arr));
202
- EXPECT_TRUE(sp_f.data() == std::begin(arr));
203
- EXPECT_TRUE(sp_g.data() == std::begin(arr));
204
- EXPECT_TRUE(sp_h.data() == std::begin(arr));
205
- EXPECT_TRUE(sp_i.data() == std::begin(arr));
206
- EXPECT_TRUE(sp_a.size() == 3);
207
- EXPECT_TRUE(sp_b.size() == 3);
208
- EXPECT_TRUE(sp_c.size() == 3);
209
- EXPECT_TRUE(sp_d.size() == 3);
210
- EXPECT_TRUE(sp_e.size() == 3);
211
- EXPECT_TRUE(sp_f.size() == 3);
212
- EXPECT_TRUE(sp_g.size() == 3);
213
- EXPECT_TRUE(sp_h.size() == 3);
214
- EXPECT_TRUE(sp_i.size() == 3);
215
- }
216
- {
217
- gsl::span<int> sp_dyn(arr);
218
- gsl::span<int, 3> sp_three(arr);
219
- gsl::span<const int> sp_const_dyn(arr);
220
- gsl::span<const int, 3> sp_const_three(arr);
221
-
222
- EXPECT_TRUE(sp_dyn.data() == std::begin(arr));
223
- EXPECT_TRUE(sp_three.data() == std::begin(arr));
224
- EXPECT_TRUE(sp_const_dyn.data() == std::begin(arr));
225
- EXPECT_TRUE(sp_const_three.data() == std::begin(arr));
226
- EXPECT_TRUE(sp_dyn.size() == 3);
227
- EXPECT_TRUE(sp_three.size() == 3);
228
- EXPECT_TRUE(sp_const_dyn.size() == 3);
229
- EXPECT_TRUE(sp_const_three.size() == 3);
230
-
231
- int other[4]{12, 34, 56, 78};
232
-
233
- sp_dyn = gsl::span<int>{other};
234
- sp_three = gsl::span<int, 3>{stl};
235
- sp_const_dyn = gsl::span<const int>{other};
236
- sp_const_three = gsl::span<const int, 3>{stl};
237
-
238
- EXPECT_TRUE(sp_dyn.data() == std::begin(other));
239
- EXPECT_TRUE(sp_three.data() == stl.data());
240
- EXPECT_TRUE(sp_const_dyn.data() == std::begin(other));
241
- EXPECT_TRUE(sp_const_three.data() == stl.data());
242
- EXPECT_TRUE(sp_dyn.size() == 4);
243
- EXPECT_TRUE(sp_three.size() == 3);
244
- EXPECT_TRUE(sp_const_dyn.size() == 4);
245
- EXPECT_TRUE(sp_const_three.size() == 3);
246
- }
247
- {
248
- gsl::span<int>::iterator it_dyn{};
249
-
250
- {
251
- gsl::span<int> sp_dyn(arr);
252
- it_dyn = sp_dyn.begin();
253
- }
254
-
255
- EXPECT_TRUE(*it_dyn == arr[0]);
256
- EXPECT_TRUE(it_dyn[2] == arr[2]);
257
-
258
- gsl::span<int, 3>::iterator it_three{};
259
-
260
- {
261
- gsl::span<int, 3> sp_three(stl);
262
- it_three = sp_three.begin();
263
- }
264
-
265
- EXPECT_TRUE(*it_three == stl[0]);
266
- EXPECT_TRUE(it_three[2] == stl[2]);
267
- }
268
-
269
- {
270
- int sequence[9]{10, 20, 30, 40, 50, 60, 70, 80, 90};
271
-
272
- const gsl::span<int> sp_dyn(sequence);
273
- const gsl::span<int, 9> sp_nine(sequence);
274
-
275
- auto first_3 = sp_dyn.first<3>();
276
- auto first_4 = sp_nine.first<4>();
277
- auto first_5 = sp_dyn.first(5);
278
- auto first_6 = sp_nine.first(6);
279
- static_assert(noexcept(sp_dyn.first<3>()), "noexcept(sp_dyn.first<3>())"); // strengthened
280
- static_assert(noexcept(sp_nine.first<4>()), "noexcept(sp_nine.first<4>())"); // strengthened
281
- static_assert(noexcept(sp_dyn.first(5)), "noexcept(sp_dyn.first(5))"); // strengthened
282
- static_assert(noexcept(sp_nine.first(6)), "noexcept(sp_nine.first(6))"); // strengthened
283
- static_assert(is_same<decltype(first_3), gsl::span<int, 3>>::value,
284
- "is_same<decltype(first_3), gsl::span<int, 3>>::value");
285
- static_assert(is_same<decltype(first_4), gsl::span<int, 4>>::value,
286
- "is_same<decltype(first_4), gsl::span<int, 4>>::value");
287
- static_assert(is_same<decltype(first_5), gsl::span<int>>::value,
288
- "is_same<decltype(first_5), gsl::span<int>>::value");
289
- static_assert(is_same<decltype(first_6), gsl::span<int>>::value,
290
- "is_same<decltype(first_6), gsl::span<int>>::value");
291
- EXPECT_TRUE(first_3.data() == std::begin(sequence));
292
- EXPECT_TRUE(first_4.data() == std::begin(sequence));
293
- EXPECT_TRUE(first_5.data() == std::begin(sequence));
294
- EXPECT_TRUE(first_6.data() == std::begin(sequence));
295
- EXPECT_TRUE(first_3.size() == 3);
296
- EXPECT_TRUE(first_4.size() == 4);
297
- EXPECT_TRUE(first_5.size() == 5);
298
- EXPECT_TRUE(first_6.size() == 6);
299
-
300
- auto last_3 = sp_dyn.last<3>();
301
- auto last_4 = sp_nine.last<4>();
302
- auto last_5 = sp_dyn.last(5);
303
- auto last_6 = sp_nine.last(6);
304
- static_assert(noexcept(sp_dyn.last<3>()), "noexcept(sp_dyn.last<3>())"); // strengthened
305
- static_assert(noexcept(sp_nine.last<4>()), "noexcept(sp_nine.last<4>())"); // strengthened
306
- static_assert(noexcept(sp_dyn.last(5)), "noexcept(sp_dyn.last(5))"); // strengthened
307
- static_assert(noexcept(sp_nine.last(6)), "noexcept(sp_nine.last(6))"); // strengthened
308
- static_assert(is_same<decltype(last_3), gsl::span<int, 3>>::value,
309
- "is_same<decltype(last_3), gsl::span<int, 3>>::value");
310
- static_assert(is_same<decltype(last_4), gsl::span<int, 4>>::value,
311
- "is_same<decltype(last_4), gsl::span<int, 4>>::value");
312
- static_assert(is_same<decltype(last_5), gsl::span<int>>::value,
313
- "is_same<decltype(last_5), gsl::span<int>>::value");
314
- static_assert(is_same<decltype(last_6), gsl::span<int>>::value,
315
- "is_same<decltype(last_6), gsl::span<int>>::value");
316
- EXPECT_TRUE(last_3.data() == std::begin(sequence) + 6);
317
- EXPECT_TRUE(last_4.data() == std::begin(sequence) + 5);
318
- EXPECT_TRUE(last_5.data() == std::begin(sequence) + 4);
319
- EXPECT_TRUE(last_6.data() == std::begin(sequence) + 3);
320
- EXPECT_TRUE(last_3.size() == 3);
321
- EXPECT_TRUE(last_4.size() == 4);
322
- EXPECT_TRUE(last_5.size() == 5);
323
- EXPECT_TRUE(last_6.size() == 6);
324
-
325
- auto offset_3 = sp_dyn.subspan<3>();
326
- auto offset_4 = sp_nine.subspan<4>();
327
- auto offset_5 = sp_dyn.subspan(5);
328
- auto offset_6 = sp_nine.subspan(6);
329
- static_assert(noexcept(sp_dyn.subspan<3>()),
330
- "noexcept(sp_dyn.subspan<3>())"); // strengthened
331
- static_assert(noexcept(sp_nine.subspan<4>()),
332
- "noexcept(sp_nine.subspan<4>())"); // strengthened
333
- static_assert(noexcept(sp_dyn.subspan(5)), "noexcept(sp_dyn.subspan(5))"); // strengthened
334
- static_assert(noexcept(sp_nine.subspan(6)), "noexcept(sp_nine.subspan(6))"); // strengthened
335
- static_assert(is_same<decltype(offset_3), gsl::span<int>>::value,
336
- "is_same<decltype(offset_3), gsl::span<int>>::value");
337
- static_assert(is_same<decltype(offset_4), gsl::span<int, 5>>::value,
338
- "is_same<decltype(offset_4), gsl::span<int, 5>>::value");
339
- static_assert(is_same<decltype(offset_5), gsl::span<int>>::value,
340
- "is_same<decltype(offset_5), gsl::span<int>>::value");
341
- static_assert(is_same<decltype(offset_6), gsl::span<int>>::value,
342
- "is_same<decltype(offset_6), gsl::span<int>>::value");
343
- EXPECT_TRUE(offset_3.data() == std::begin(sequence) + 3);
344
- EXPECT_TRUE(offset_4.data() == std::begin(sequence) + 4);
345
- EXPECT_TRUE(offset_5.data() == std::begin(sequence) + 5);
346
- EXPECT_TRUE(offset_6.data() == std::begin(sequence) + 6);
347
- EXPECT_TRUE(offset_3.size() == 6);
348
- EXPECT_TRUE(offset_4.size() == 5);
349
- EXPECT_TRUE(offset_5.size() == 4);
350
- EXPECT_TRUE(offset_6.size() == 3);
351
-
352
- auto subspan_3 = sp_dyn.subspan<3, 2>();
353
- auto subspan_4 = sp_nine.subspan<4, 2>();
354
- auto subspan_5 = sp_dyn.subspan(5, 2);
355
- auto subspan_6 = sp_nine.subspan(6, 2);
356
- static_assert(noexcept(sp_dyn.subspan<3, 2>()),
357
- "noexcept(sp_dyn.subspan<3, 2>())"); // strengthened
358
- static_assert(noexcept(sp_nine.subspan<4, 2>()),
359
- "noexcept(sp_nine.subspan<4, 2>())"); // strengthened
360
- static_assert(noexcept(sp_dyn.subspan(5, 2)),
361
- "noexcept(sp_dyn.subspan(5, 2))"); // strengthened
362
- static_assert(noexcept(sp_nine.subspan(6, 2)),
363
- "noexcept(sp_nine.subspan(6, 2))"); // strengthened
364
- static_assert(is_same<decltype(subspan_3), gsl::span<int, 2>>::value,
365
- "is_same<decltype(subspan_3), gsl::span<int, 2>>::value");
366
- static_assert(is_same<decltype(subspan_4), gsl::span<int, 2>>::value,
367
- "is_same<decltype(subspan_4), gsl::span<int, 2>>::value");
368
- static_assert(is_same<decltype(subspan_5), gsl::span<int>>::value,
369
- "is_same<decltype(subspan_5), gsl::span<int>>::value");
370
- static_assert(is_same<decltype(subspan_6), gsl::span<int>>::value,
371
- "is_same<decltype(subspan_6), gsl::span<int>>::value");
372
- EXPECT_TRUE(subspan_3.data() == std::begin(sequence) + 3);
373
- EXPECT_TRUE(subspan_4.data() == std::begin(sequence) + 4);
374
- EXPECT_TRUE(subspan_5.data() == std::begin(sequence) + 5);
375
- EXPECT_TRUE(subspan_6.data() == std::begin(sequence) + 6);
376
- EXPECT_TRUE(subspan_3.size() == 2);
377
- EXPECT_TRUE(subspan_4.size() == 2);
378
- EXPECT_TRUE(subspan_5.size() == 2);
379
- EXPECT_TRUE(subspan_6.size() == 2);
380
-
381
- static_assert(noexcept(sp_dyn.size()), "noexcept(sp_dyn.size())");
382
- static_assert(noexcept(sp_dyn.size_bytes()), "noexcept(sp_dyn.size_bytes())");
383
- static_assert(noexcept(sp_dyn.empty()), "noexcept(sp_dyn.empty())");
384
- static_assert(noexcept(sp_dyn[0]), "noexcept(sp_dyn[0])"); // strengthened
385
- static_assert(noexcept(sp_dyn.front()), "noexcept(sp_dyn.front())"); // strengthened
386
- static_assert(noexcept(sp_dyn.back()), "noexcept(sp_dyn.back())"); // strengthened
387
- static_assert(noexcept(sp_dyn.data()), "noexcept(sp_dyn.data())");
388
- static_assert(noexcept(sp_dyn.begin()), "noexcept(sp_dyn.begin())");
389
- static_assert(noexcept(sp_dyn.end()), "noexcept(sp_dyn.end())");
390
- static_assert(noexcept(sp_dyn.rbegin()), "noexcept(sp_dyn.rbegin())");
391
- static_assert(noexcept(sp_dyn.rend()), "noexcept(sp_dyn.rend())");
392
-
393
- static_assert(noexcept(sp_nine.size()), "noexcept(sp_nine.size())");
394
- static_assert(noexcept(sp_nine.size_bytes()), "noexcept(sp_nine.size_bytes())");
395
- static_assert(noexcept(sp_nine.empty()), "noexcept(sp_nine.empty())");
396
- static_assert(noexcept(sp_nine[0]), "noexcept(sp_nine[0])"); // strengthened
397
- static_assert(noexcept(sp_nine.front()), "noexcept(sp_nine.front())"); // strengthened
398
- static_assert(noexcept(sp_nine.back()), "noexcept(sp_nine.back())"); // strengthened
399
- static_assert(noexcept(sp_nine.data()), "noexcept(sp_nine.data())");
400
- static_assert(noexcept(sp_nine.begin()), "noexcept(sp_nine.begin())");
401
- static_assert(noexcept(sp_nine.end()), "noexcept(sp_nine.end())");
402
- static_assert(noexcept(sp_nine.rbegin()), "noexcept(sp_nine.rbegin())");
403
- static_assert(noexcept(sp_nine.rend()), "noexcept(sp_nine.rend())");
404
-
405
- EXPECT_TRUE(sp_dyn.size() == 9);
406
- EXPECT_TRUE(sp_nine.size() == 9);
407
-
408
- EXPECT_TRUE(sp_dyn.size_bytes() == 9 * sizeof(int));
409
- EXPECT_TRUE(sp_nine.size_bytes() == 9 * sizeof(int));
410
-
411
- EXPECT_TRUE(!sp_dyn.empty());
412
- EXPECT_TRUE(!sp_nine.empty());
413
-
414
- EXPECT_TRUE(sp_dyn[0] == 10);
415
- EXPECT_TRUE(sp_nine[0] == 10);
416
- EXPECT_TRUE(sp_dyn[8] == 90);
417
- EXPECT_TRUE(sp_nine[8] == 90);
418
-
419
- EXPECT_TRUE(sp_dyn.front() == 10);
420
- EXPECT_TRUE(sp_nine.front() == 10);
421
-
422
- EXPECT_TRUE(sp_dyn.back() == 90);
423
- EXPECT_TRUE(sp_nine.back() == 90);
424
-
425
- EXPECT_TRUE(&sp_dyn.front() == std::begin(sequence));
426
- EXPECT_TRUE(&sp_nine.front() == std::begin(sequence));
427
- EXPECT_TRUE(&sp_dyn[4] == std::begin(sequence) + 4);
428
- EXPECT_TRUE(&sp_nine[4] == std::begin(sequence) + 4);
429
- EXPECT_TRUE(&sp_dyn.back() == std::begin(sequence) + 8);
430
- EXPECT_TRUE(&sp_nine.back() == std::begin(sequence) + 8);
431
-
432
- EXPECT_TRUE(sp_dyn.data() == std::begin(sequence));
433
- EXPECT_TRUE(sp_nine.data() == std::begin(sequence));
434
-
435
- EXPECT_TRUE(*sp_dyn.begin() == 10);
436
- EXPECT_TRUE(*sp_nine.begin() == 10);
437
-
438
- EXPECT_TRUE(sp_dyn.end()[-2] == 80);
439
- EXPECT_TRUE(sp_nine.end()[-2] == 80);
440
-
441
- EXPECT_TRUE(*sp_dyn.rbegin() == 90);
442
- EXPECT_TRUE(*sp_nine.rbegin() == 90);
443
-
444
- EXPECT_TRUE(sp_dyn.rend()[-2] == 20);
445
- EXPECT_TRUE(sp_nine.rend()[-2] == 20);
446
-
447
- static_assert(is_same<decltype(sp_dyn.begin()), gsl::span<int>::iterator>::value,
448
- "is_same<decltype(sp_dyn.begin()), gsl::span<int>::iterator>::value");
449
- static_assert(is_same<decltype(sp_nine.begin()), gsl::span<int, 9>::iterator>::value,
450
- "is_same<decltype(sp_nine.begin()), gsl::span<int, 9>::iterator>::value");
451
- static_assert(is_same<decltype(sp_dyn.end()), gsl::span<int>::iterator>::value,
452
- "is_same<decltype(sp_dyn.end()), gsl::span<int>::iterator>::value");
453
- static_assert(is_same<decltype(sp_nine.end()), gsl::span<int, 9>::iterator>::value,
454
- "is_same<decltype(sp_nine.end()), gsl::span<int, 9>::iterator>::value");
455
- static_assert(
456
- is_same<decltype(sp_dyn.rbegin()), gsl::span<int>::reverse_iterator>::value,
457
- "is_same<decltype(sp_dyn.rbegin()), gsl::span<int>::reverse_iterator>::value");
458
- static_assert(
459
- is_same<decltype(sp_nine.rbegin()), gsl::span<int, 9>::reverse_iterator>::value,
460
- "is_same<decltype(sp_nine.rbegin()), gsl::span<int, 9>::reverse_iterator>::value");
461
- static_assert(is_same<decltype(sp_dyn.rend()), gsl::span<int>::reverse_iterator>::value,
462
- "is_same<decltype(sp_dyn.rend()), gsl::span<int>::reverse_iterator>::value");
463
- static_assert(
464
- is_same<decltype(sp_nine.rend()), gsl::span<int, 9>::reverse_iterator>::value,
465
- "is_same<decltype(sp_nine.rend()), gsl::span<int, 9>::reverse_iterator>::value");
466
- }
467
- {
468
- int sequence[9]{10, 20, 30, 40, 50, 60, 70, 80, 90};
469
-
470
- constexpr size_t SizeBytes = sizeof(sequence);
471
-
472
- const gsl::span<int> sp_dyn(sequence);
473
- const gsl::span<int, 9> sp_nine(sequence);
474
- const gsl::span<const int> sp_const_dyn(sequence);
475
- const gsl::span<const int, 9> sp_const_nine(sequence);
476
-
477
- static_assert(noexcept(as_bytes(sp_dyn)), "noexcept(as_bytes(sp_dyn))");
478
- static_assert(noexcept(as_bytes(sp_nine)), "noexcept(as_bytes(sp_nine))");
479
- static_assert(noexcept(as_bytes(sp_const_dyn)), "noexcept(as_bytes(sp_const_dyn))");
480
- static_assert(noexcept(as_bytes(sp_const_nine)), "noexcept(as_bytes(sp_const_nine))");
481
- static_assert(noexcept(as_writable_bytes(sp_dyn)), "noexcept(as_writable_bytes(sp_dyn))");
482
- static_assert(noexcept(as_writable_bytes(sp_nine)), "noexcept(as_writable_bytes(sp_nine))");
483
-
484
- auto sp_1 = as_bytes(sp_dyn);
485
- auto sp_2 = as_bytes(sp_nine);
486
- auto sp_3 = as_bytes(sp_const_dyn);
487
- auto sp_4 = as_bytes(sp_const_nine);
488
- auto sp_5 = as_writable_bytes(sp_dyn);
489
- auto sp_6 = as_writable_bytes(sp_nine);
490
-
491
- static_assert(is_same<decltype(sp_1), gsl::span<const byte>>::value,
492
- "is_same<decltype(sp_1), gsl::span<const byte>>::value");
493
- static_assert(is_same<decltype(sp_2), gsl::span<const byte, SizeBytes>>::value,
494
- "is_same<decltype(sp_2), gsl::span<const byte, SizeBytes>>::value");
495
- static_assert(is_same<decltype(sp_3), gsl::span<const byte>>::value,
496
- "is_same<decltype(sp_3), gsl::span<const byte>>::value");
497
- static_assert(is_same<decltype(sp_4), gsl::span<const byte, SizeBytes>>::value,
498
- "is_same<decltype(sp_4), gsl::span<const byte, SizeBytes>>::value");
499
- static_assert(is_same<decltype(sp_5), gsl::span<byte>>::value,
500
- "is_same<decltype(sp_5), gsl::span<byte>>::value");
501
- static_assert(is_same<decltype(sp_6), gsl::span<byte, SizeBytes>>::value,
502
- "is_same<decltype(sp_6), gsl::span<byte, SizeBytes>>::value");
503
-
504
- EXPECT_TRUE(sp_1.data() == reinterpret_cast<const byte*>(begin(sequence)));
505
- EXPECT_TRUE(sp_2.data() == reinterpret_cast<const byte*>(begin(sequence)));
506
- EXPECT_TRUE(sp_3.data() == reinterpret_cast<const byte*>(begin(sequence)));
507
- EXPECT_TRUE(sp_4.data() == reinterpret_cast<const byte*>(begin(sequence)));
508
- EXPECT_TRUE(sp_5.data() == reinterpret_cast<byte*>(begin(sequence)));
509
- EXPECT_TRUE(sp_6.data() == reinterpret_cast<byte*>(begin(sequence)));
510
-
511
- EXPECT_TRUE(sp_1.size() == SizeBytes);
512
- EXPECT_TRUE(sp_2.size() == SizeBytes);
513
- EXPECT_TRUE(sp_3.size() == SizeBytes);
514
- EXPECT_TRUE(sp_4.size() == SizeBytes);
515
- EXPECT_TRUE(sp_5.size() == SizeBytes);
516
- EXPECT_TRUE(sp_6.size() == SizeBytes);
517
- }
518
- }
519
-
520
- // assertions for span's definition
521
- static_assert(std::is_same<decltype(gsl::dynamic_extent), const std::size_t>::value,
522
- "gsl::dynamic_extent must be respresented as std::size_t");
523
- static_assert(gsl::dynamic_extent == static_cast<std::size_t>(-1),
524
- "gsl::dynamic_extent must be defined as the max value of std::size_t");
525
-
526
- static_assert(std::is_same<decltype(gsl::span<int>::extent), const std::size_t>::value,
527
- "Ensure that the type of gsl::span::extent is std::size_t");
528
- static_assert(gsl::span<int>::extent == gsl::dynamic_extent,
529
- "gsl::span<int>::extent should be equivalent to gsl::dynamic_extent");
530
-
531
- static_assert(std::is_same<decltype(gsl::span<int, 3>::extent), const std::size_t>::value,
532
- "Ensure that the type of gsl::span::extent is std::size_t");
533
- static_assert(gsl::span<int, 3>::extent == 3, "Ensure that span<int, 3>::extent is equal to 3");
534
-
535
- static_assert(std::is_same<gsl::span<int>::element_type, int>::value,
536
- "span<int>::element_type should be int");
537
- static_assert(std::is_same<gsl::span<int>::value_type, int>::value,
538
- "span<int>::value_type should be int");
539
- static_assert(std::is_same<gsl::span<int>::size_type, std::size_t>::value,
540
- "span<int>::size_type should be std::size_t");
541
- static_assert(std::is_same<gsl::span<int>::difference_type, ptrdiff_t>::value,
542
- "span<int>::difference_type should be std::ptrdiff_t");
543
- static_assert(std::is_same<gsl::span<int>::pointer, int*>::value,
544
- "span<int>::pointer should be int*");
545
- static_assert(std::is_same<gsl::span<int>::const_pointer, const int*>::value,
546
- "span<int>::const_pointer should be const int*");
547
- static_assert(std::is_same<gsl::span<int>::reference, int&>::value,
548
- "span<int>::reference should be int&");
549
- static_assert(std::is_same<gsl::span<int>::const_reference, const int&>::value,
550
- "span<int>::const_reference should be const int&");
551
-
552
- static_assert(std::is_same<gsl::span<int, 3>::element_type, int>::value,
553
- "span<int, 3>::element_type should be int");
554
- static_assert(std::is_same<gsl::span<int, 3>::value_type, int>::value,
555
- "span<int, 3>::value_type should be int");
556
- static_assert(std::is_same<gsl::span<int, 3>::size_type, std::size_t>::value,
557
- "span<int, 3>::size_type should be std::size_t");
558
- static_assert(std::is_same<gsl::span<int, 3>::difference_type, ptrdiff_t>::value,
559
- "span<int, 3>::difference_type should be std::ptrdiff_t");
560
- static_assert(std::is_same<gsl::span<int, 3>::pointer, int*>::value,
561
- "span<int, 3>::pointer should be int*");
562
- static_assert(std::is_same<gsl::span<int, 3>::const_pointer, const int*>::value,
563
- "span<int, 3>::const_pointer should be const int*");
564
- static_assert(std::is_same<gsl::span<int, 3>::reference, int&>::value,
565
- "span<int, 3>::reference should be int&");
566
- static_assert(std::is_same<gsl::span<int, 3>::const_reference, const int&>::value,
567
- "span<int, 3>::const_reference should be const int&");
568
-
569
- static_assert(std::is_same<gsl::span<const int>::element_type, const int>::value,
570
- "span<const int>::element_type should be const int");
571
- static_assert(std::is_same<gsl::span<const int>::value_type, int>::value,
572
- "span<const int>::value_type should be int");
573
- static_assert(std::is_same<gsl::span<const int>::size_type, std::size_t>::value,
574
- "span<const int>::size_type should be size_t");
575
- static_assert(std::is_same<gsl::span<const int>::difference_type, ptrdiff_t>::value,
576
- "span<const int>::difference_type should be ptrdiff_t");
577
- static_assert(std::is_same<gsl::span<const int>::pointer, const int*>::value,
578
- "span<const int>::pointer should be const int*");
579
- static_assert(std::is_same<gsl::span<const int>::const_pointer, const int*>::value,
580
- "span<const int>::const_pointer should be const int*");
581
- static_assert(std::is_same<gsl::span<const int>::reference, const int&>::value,
582
- "span<const int>::reference should be const int&");
583
- static_assert(std::is_same<gsl::span<const int>::const_reference, const int&>::value,
584
- "span<const int>::const_reference should be const int&");
585
-
586
- static_assert(std::is_same<gsl::span<const int, 3>::element_type, const int>::value,
587
- "span<const int, 3>::element_type should be const int");
588
- static_assert(std::is_same<gsl::span<const int, 3>::value_type, int>::value,
589
- "span<const int, 3>::value_type should be int");
590
- static_assert(std::is_same<gsl::span<const int, 3>::size_type, std::size_t>::value,
591
- "span<const int, 3>::size_type should be size_t");
592
- static_assert(std::is_same<gsl::span<const int, 3>::difference_type, ptrdiff_t>::value,
593
- "span<const int, 3>::difference_type should be ptrdiff_t");
594
- static_assert(std::is_same<gsl::span<const int, 3>::pointer, const int*>::value,
595
- "span<const int, 3>::pointer should be const int*");
596
- static_assert(std::is_same<gsl::span<const int, 3>::const_pointer, const int*>::value,
597
- "span<const int, 3>::const_pointer should be const int*");
598
- static_assert(std::is_same<gsl::span<const int, 3>::reference, const int&>::value,
599
- "span<const int, 3>::reference should be const int&");
600
- static_assert(std::is_same<gsl::span<const int, 3>::const_reference, const int&>::value,
601
- "span<const int, 3>::const_reference should be const int&");
602
-
603
- // assertions for span_iterator
604
- static_assert(std::is_same<std::iterator_traits<gsl::span<int>::iterator>::pointer, int*>::value,
605
- "span<int>::iterator's pointer should be int*");
606
- static_assert(
607
- std::is_same<gsl::span<int>::reverse_iterator,
608
- std::reverse_iterator<gsl::span<int>::iterator>>::value,
609
- "span<int>::reverse_iterator should equal std::reverse_iterator<span<int>::iterator>");
610
-
611
- static_assert(std::is_same<std::iterator_traits<gsl::span<int, 3>::iterator>::pointer, int*>::value,
612
- "span<int, 3>::iterator's pointer should be int*");
613
- static_assert(
614
- std::is_same<gsl::span<int, 3>::reverse_iterator,
615
- std::reverse_iterator<gsl::span<int, 3>::iterator>>::value,
616
- "span<int, 3>::reverse_iterator should equal std::reverse_iterator<span<int, 3>::iterator>");
617
-
618
- static_assert(
619
- std::is_same<std::iterator_traits<gsl::span<const int>::iterator>::pointer, const int*>::value,
620
- "span<const int>::iterator's pointer should be int*");
621
- static_assert(std::is_same<gsl::span<const int>::reverse_iterator,
622
- std::reverse_iterator<gsl::span<const int>::iterator>>::value,
623
- "span<const int>::reverse_iterator should equal std::reverse_iterator<span<const "
624
- "int>::iterator>");
625
-
626
- static_assert(std::is_same<std::iterator_traits<gsl::span<const int, 3>::iterator>::pointer,
627
- const int*>::value,
628
- "span<const int, 3>::iterator's pointer should be int*");
629
- static_assert(std::is_same<gsl::span<const int, 3>::reverse_iterator,
630
- std::reverse_iterator<gsl::span<const int, 3>::iterator>>::value,
631
- "span<const int, 3>::reverse_iterator should equal std::reverse_iterator<span<const "
632
- "int, 3>::iterator>");
633
-
634
- // copyability assertions
635
- static_assert(std::is_trivially_copyable<gsl::span<int>>::value,
636
- "span<int> should be trivially copyable");
637
- static_assert(std::is_trivially_copyable<gsl::span<int>::iterator>::value,
638
- "span<int>::iterator should be trivially copyable");
639
-
640
- static_assert(std::is_trivially_copyable<gsl::span<int, 3>>::value,
641
- "span<int, 3> should be trivially copyable");
642
- static_assert(std::is_trivially_copyable<gsl::span<int, 3>::iterator>::value,
643
- "span<int, 3>::iterator should be trivially copyable");
644
-
645
- static_assert(std::is_trivially_copyable<gsl::span<const int>>::value,
646
- "span<const int> should be trivially copyable");
647
- static_assert(std::is_trivially_copyable<gsl::span<const int>::iterator>::value,
648
- "span<const int>::iterator should be trivially copyable");
649
-
650
- static_assert(std::is_trivially_copyable<gsl::span<const int, 3>>::value,
651
- "span<const int, 3> should be trivially copyable");
652
- static_assert(std::is_trivially_copyable<gsl::span<const int, 3>::iterator>::value,
653
- "span<const int, 3>::iterator should be trivially copyable");
654
-
655
- // nothrow constructible assertions
656
- static_assert(std::is_nothrow_constructible<gsl::span<int>, int*, std::size_t>::value,
657
- "std::is_nothrow_constructible<gsl::span<int>, int*, std::size_t>");
658
- static_assert(std::is_nothrow_constructible<gsl::span<int>, int*, std::uint16_t>::value,
659
- "std::is_nothrow_constructible<gsl::span<int>, int*, std::uint16_t>");
660
- static_assert(std::is_nothrow_constructible<gsl::span<int>, int*, int*>::value,
661
- "std::is_nothrow_constructible<gsl::span<int>, int*, int*>");
662
- static_assert(std::is_nothrow_constructible<gsl::span<int>, int (&)[3]>::value,
663
- "std::is_nothrow_constructible<gsl::span<int>, int(&)[3]>");
664
- static_assert(std::is_nothrow_constructible<gsl::span<int>, const gsl::span<int>&>::value,
665
- "std::is_nothrow_constructible<gsl::span<int>, const gsl::span<int>&>");
666
- static_assert(std::is_nothrow_constructible<gsl::span<int>, const gsl::span<int, 3>&>::value,
667
- "std::is_nothrow_constructible<gsl::span<int>, const gsl::span<int, 3>&>");
668
- static_assert(std::is_nothrow_constructible<gsl::span<int>, const gsl::span<int, 500>&>::value,
669
- "std::is_nothrow_constructible<gsl::span<int>, const gsl::span<int, 500>&>");
670
- static_assert(std::is_nothrow_constructible<gsl::span<int>, std::array<int, 3>&>::value,
671
- "std::is_nothrow_constructible<gsl::span<int>, std::array<int, 3>&>");
672
-
673
- static_assert(std::is_nothrow_constructible<gsl::span<int, 3>, int*, std::size_t>::value,
674
- "std::is_nothrow_constructible<gsl::span<int, 3>, int*, std::size_t>");
675
- static_assert(std::is_nothrow_constructible<gsl::span<int, 3>, int*, std::uint16_t>::value,
676
- "std::is_nothrow_constructible<gsl::span<int, 3>, int*, std::uint16_t>");
677
- static_assert(std::is_nothrow_constructible<gsl::span<int, 3>, int*, int*>::value,
678
- "std::is_nothrow_constructible<gsl::span<int, 3>, int*, int*>");
679
- static_assert(std::is_nothrow_constructible<gsl::span<int, 3>, int (&)[3]>::value,
680
- "std::is_nothrow_constructible<gsl::span<int, 3>, int(&)[3]>");
681
- static_assert(std::is_nothrow_constructible<gsl::span<int, 3>, const gsl::span<int, 3>&>::value,
682
- "std::is_nothrow_constructible<gsl::span<int, 3>, const gsl::span<int, 3>&>");
683
- static_assert(std::is_nothrow_constructible<gsl::span<int, 3>, std::array<int, 3>&>::value,
684
- "std::is_nothrow_constructible<gsl::span<int, 3>, std::array<int, 3>&>");
685
-
686
- static_assert(std::is_nothrow_constructible<gsl::span<const int>, int*, std::size_t>::value,
687
- "std::is_nothrow_constructible<gsl::span<const int>, int*, std::size_t>");
688
- static_assert(std::is_nothrow_constructible<gsl::span<const int>, int*, int*>::value,
689
- "std::is_nothrow_constructible<gsl::span<const int>, int*, int*>");
690
- static_assert(std::is_nothrow_constructible<gsl::span<const int>, int*, const int*>::value,
691
- "std::is_nothrow_constructible<gsl::span<const int>, int*, const int*>");
692
- static_assert(std::is_nothrow_constructible<gsl::span<const int>, int (&)[3]>::value,
693
- "std::is_nothrow_constructible<gsl::span<const int>, int(&)[3]>");
694
- static_assert(std::is_nothrow_constructible<gsl::span<const int>, const int*, int*>::value,
695
- "std::is_nothrow_constructible<gsl::span<const int>, const int*, int*>");
696
- static_assert(std::is_nothrow_constructible<gsl::span<const int>, const int*, const int*>::value,
697
- "std::is_nothrow_constructible<gsl::span<const int>, const int*, const int*>");
698
- static_assert(std::is_nothrow_constructible<gsl::span<const int>, const int*, std::size_t>::value,
699
- "std::is_nothrow_constructible<gsl::span<const int>, const int*, std::size_t>");
700
- static_assert(std::is_nothrow_constructible<gsl::span<const int>, const int (&)[3]>::value,
701
- "std::is_nothrow_constructible<gsl::span<const int>, const int(&)[3]>");
702
- static_assert(std::is_nothrow_constructible<gsl::span<const int>, const gsl::span<int>&>::value,
703
- "std::is_nothrow_constructible<gsl::span<const int>, const gsl::span<int>&>");
704
- static_assert(std::is_nothrow_constructible<gsl::span<const int>, const gsl::span<int, 3>&>::value,
705
- "std::is_nothrow_constructible<gsl::span<const int>, const gsl::span<int, 3>&>");
706
- static_assert(
707
- std::is_nothrow_constructible<gsl::span<const int>, const gsl::span<int, 500>&>::value,
708
- "std::is_nothrow_constructible<gsl::span<const int>, const gsl::span<int, 500>&>");
709
- static_assert(
710
- std::is_nothrow_constructible<gsl::span<const int>, const gsl::span<const int>&>::value,
711
- "std::is_nothrow_constructible<gsl::span<const int>, const gsl::span<const int>&>");
712
- static_assert(
713
- std::is_nothrow_constructible<gsl::span<const int>, const gsl::span<const int, 3>&>::value,
714
- "std::is_nothrow_constructible<gsl::span<const int>, const gsl::span<const int, 3>&>");
715
- static_assert(
716
- std::is_nothrow_constructible<gsl::span<const int>, const gsl::span<const int, 500>&>::value,
717
- "std::is_nothrow_constructible<gsl::span<const int>, const gsl::span<const int, 500>&>");
718
- static_assert(std::is_nothrow_constructible<gsl::span<const int>, std::array<int, 3>&>::value,
719
- "std::is_nothrow_constructible<gsl::span<const int>, std::array<int, 3>&>");
720
- static_assert(std::is_nothrow_constructible<gsl::span<const int>, const std::array<int, 3>&>::value,
721
- "std::is_nothrow_constructible<gsl::span<const int>, const std::array<int, 3>&>");
722
-
723
- static_assert(
724
- std::is_nothrow_constructible<gsl::span<const int, 3>, const gsl::span<int, 3>&>::value,
725
- "std::is_nothrow_constructible<gsl::span<const int, 3>, const gsl::span<int, 3>&>");
726
- static_assert(
727
- std::is_nothrow_constructible<gsl::span<const int, 3>, const gsl::span<const int, 3>&>::value,
728
- "std::is_nothrow_constructible<gsl::span<const int, 3>, const gsl::span<const int, 3>&>");
729
-
730
- static_assert(std::is_nothrow_constructible<gsl::span<Base>, Base (&)[3]>::value,
731
- "std::is_nothrow_constructible<gsl::span<Base>, Base(&)[3]>");
732
- static_assert(std::is_nothrow_constructible<gsl::span<Base>, const gsl::span<Base>&>::value,
733
- "std::is_nothrow_constructible<gsl::span<Base>, const gsl::span<Base>&>");
734
- static_assert(std::is_nothrow_constructible<gsl::span<Base>, const gsl::span<Base, 3>&>::value,
735
- "std::is_nothrow_constructible<gsl::span<Base>, const gsl::span<Base, 3>&>");
736
- static_assert(std::is_nothrow_constructible<gsl::span<Base>, std::array<Base, 3>&>::value,
737
- "std::is_nothrow_constructible<gsl::span<Base>, std::array<Base, 3>&>");
738
-
739
- static_assert(std::is_nothrow_constructible<gsl::span<Base, 3>, Base (&)[3]>::value,
740
- "std::is_nothrow_constructible<gsl::span<Base, 3>, Base(&)[3]>");
741
- static_assert(std::is_nothrow_constructible<gsl::span<Base, 3>, const gsl::span<Base, 3>&>::value,
742
- "std::is_nothrow_constructible<gsl::span<Base, 3>, const gsl::span<Base, 3>&>");
743
- static_assert(std::is_nothrow_constructible<gsl::span<Base, 3>, std::array<Base, 3>&>::value,
744
- "std::is_nothrow_constructible<gsl::span<Base, 3>, std::array<Base, 3>&>");
745
-
746
- static_assert(std::is_nothrow_constructible<gsl::span<const Base>, Base (&)[3]>::value,
747
- "std::is_nothrow_constructible<gsl::span<const Base>, Base(&)[3]>");
748
- static_assert(std::is_nothrow_constructible<gsl::span<const Base>, const Base (&)[3]>::value,
749
- "std::is_nothrow_constructible<gsl::span<const Base>, const Base(&)[3]>");
750
- static_assert(std::is_nothrow_constructible<gsl::span<const Base>, const gsl::span<Base>&>::value,
751
- "std::is_nothrow_constructible<gsl::span<const Base>, const gsl::span<Base>&>");
752
- static_assert(
753
- std::is_nothrow_constructible<gsl::span<const Base>, const gsl::span<Base, 3>&>::value,
754
- "std::is_nothrow_constructible<gsl::span<const Base>, const gsl::span<Base, 3>&>");
755
- static_assert(
756
- std::is_nothrow_constructible<gsl::span<const Base>, const gsl::span<const Base>&>::value,
757
- "std::is_nothrow_constructible<gsl::span<const Base>, const gsl::span<const Base>&>");
758
- static_assert(
759
- std::is_nothrow_constructible<gsl::span<const Base>, const gsl::span<const Base, 3>&>::value,
760
- "std::is_nothrow_constructible<gsl::span<const Base>, const gsl::span<const Base, 3>&>");
761
- static_assert(std::is_nothrow_constructible<gsl::span<const Base>, std::array<Base, 3>&>::value,
762
- "std::is_nothrow_constructible<gsl::span<const Base>, std::array<Base, 3>&>");
763
- static_assert(
764
- std::is_nothrow_constructible<gsl::span<const Base>, const std::array<Base, 3>&>::value,
765
- "std::is_nothrow_constructible<gsl::span<const Base>, const std::array<Base, 3>&>");
766
-
767
- static_assert(
768
- std::is_nothrow_constructible<gsl::span<const Base, 3>, const gsl::span<Base, 3>&>::value,
769
- "std::is_nothrow_constructible<gsl::span<const Base, 3>, const gsl::span<Base, 3>&>");
770
- static_assert(
771
- std::is_nothrow_constructible<gsl::span<const Base, 3>, const gsl::span<const Base, 3>&>::value,
772
- "std::is_nothrow_constructible<gsl::span<const Base, 3>, const gsl::span<const Base, 3>&>");
773
-
774
- // non-constructible assertions
775
- static_assert(!std::is_constructible<gsl::span<int>, const int*, int*>::value,
776
- "!std::is_constructible<gsl::span<int>, const int*, int*>");
777
- static_assert(!std::is_constructible<gsl::span<int>, const int*, const int*>::value,
778
- "!std::is_constructible<gsl::span<int>, const int*, const int*>");
779
- static_assert(!std::is_constructible<gsl::span<int>, const int*, double*>::value,
780
- "!std::is_constructible<gsl::span<int>, const int*, double*>");
781
- static_assert(!std::is_constructible<gsl::span<int>, const int*, std::size_t>::value,
782
- "!std::is_constructible<gsl::span<int>, const int*, std::size_t>");
783
- static_assert(!std::is_constructible<gsl::span<int>, const int (&)[3]>::value,
784
- "!std::is_constructible<gsl::span<int>, const int(&)[3]>");
785
- static_assert(!std::is_constructible<gsl::span<int>, double*, int*>::value,
786
- "!std::is_constructible<gsl::span<int>, double*, int*>");
787
- static_assert(!std::is_constructible<gsl::span<int>, double*, const int*>::value,
788
- "!std::is_constructible<gsl::span<int>, double*, const int*>");
789
- static_assert(!std::is_constructible<gsl::span<int>, double*, double*>::value,
790
- "!std::is_constructible<gsl::span<int>, double*, double*>");
791
- static_assert(!std::is_constructible<gsl::span<int>, double*, std::size_t>::value,
792
- "!std::is_constructible<gsl::span<int>, double*, std::size_t>");
793
- static_assert(!std::is_constructible<gsl::span<int>, double (&)[3]>::value,
794
- "!std::is_constructible<gsl::span<int>, double(&)[3]>");
795
- static_assert(!std::is_constructible<gsl::span<int>, int*, double*>::value,
796
- "!std::is_constructible<gsl::span<int>, int*, double*>");
797
- static_assert(!std::is_constructible<gsl::span<int>, std::size_t, int*>::value,
798
- "!std::is_constructible<gsl::span<int>, std::size_t, int*>");
799
- static_assert(!std::is_constructible<gsl::span<int>, std::size_t, std::size_t>::value,
800
- "!std::is_constructible<gsl::span<int>, std::size_t, std::size_t>");
801
- static_assert(!std::is_constructible<gsl::span<int>, const gsl::span<const int>&>::value,
802
- "!std::is_constructible<gsl::span<int>, const gsl::span<const int>&>");
803
- static_assert(!std::is_constructible<gsl::span<int>, const gsl::span<const int, 3>&>::value,
804
- "!std::is_constructible<gsl::span<int>, const gsl::span<const int, 3>&>");
805
- static_assert(!std::is_constructible<gsl::span<int>, const gsl::span<const int, 500>&>::value,
806
- "!std::is_constructible<gsl::span<int>, const gsl::span<const int, 500>&>");
807
- static_assert(!std::is_constructible<gsl::span<int>, const gsl::span<double, 3>&>::value,
808
- "!std::is_constructible<gsl::span<int>, const gsl::span<double, 3>&>");
809
- static_assert(!std::is_constructible<gsl::span<int>, std::array<double, 3>&>::value,
810
- "!std::is_constructible<gsl::span<int>, std::array<double, 3>&>");
811
- static_assert(!std::is_constructible<gsl::span<int>, const std::array<int, 3>&>::value,
812
- "!std::is_constructible<gsl::span<int>, const std::array<int, 3>&>");
813
-
814
- static_assert(!std::is_constructible<gsl::span<int, 3>, int*, double*>::value,
815
- "!std::is_constructible<gsl::span<int, 3>, int*, double*>");
816
- static_assert(!std::is_constructible<gsl::span<int, 3>, int (&)[500]>::value,
817
- "!std::is_constructible<gsl::span<int, 3>, int(&)[500]>");
818
- static_assert(!std::is_constructible<gsl::span<int, 3>, const int*, int*>::value,
819
- "!std::is_constructible<gsl::span<int, 3>, const int*, int*>");
820
- static_assert(!std::is_constructible<gsl::span<int, 3>, const int*, const int*>::value,
821
- "!std::is_constructible<gsl::span<int, 3>, const int*, const int*>");
822
- static_assert(!std::is_constructible<gsl::span<int, 3>, const int*, std::size_t>::value,
823
- "!std::is_constructible<gsl::span<int, 3>, const int*, std::size_t>");
824
- static_assert(!std::is_constructible<gsl::span<int, 3>, const int*, double*>::value,
825
- "!std::is_constructible<gsl::span<int, 3>, const int*, double*>");
826
- static_assert(!std::is_constructible<gsl::span<int, 3>, const int (&)[3]>::value,
827
- "!std::is_constructible<gsl::span<int, 3>, const int(&)[3]>");
828
- static_assert(!std::is_constructible<gsl::span<int, 3>, double*, std::size_t>::value,
829
- "!std::is_constructible<gsl::span<int, 3>, double*, std::size_t>");
830
- static_assert(!std::is_constructible<gsl::span<int, 3>, double*, int*>::value,
831
- "!std::is_constructible<gsl::span<int, 3>, double*, int*>");
832
- static_assert(!std::is_constructible<gsl::span<int, 3>, double*, const int*>::value,
833
- "!std::is_constructible<gsl::span<int, 3>, double*, const int*>");
834
- static_assert(!std::is_constructible<gsl::span<int, 3>, double*, double*>::value,
835
- "!std::is_constructible<gsl::span<int, 3>, double*, double*>");
836
- static_assert(!std::is_constructible<gsl::span<int, 3>, double (&)[3]>::value,
837
- "!std::is_constructible<gsl::span<int, 3>, double(&)[3]>");
838
-
839
- static_assert(!std::is_constructible<gsl::span<int, 3>, std::size_t, int*>::value,
840
- "!std::is_constructible<gsl::span<int, 3>, std::size_t, int*>");
841
- static_assert(!std::is_constructible<gsl::span<int, 3>, std::size_t, std::size_t>::value,
842
- "!std::is_constructible<gsl::span<int, 3>, std::size_t, std::size_t>");
843
- static_assert(!std::is_constructible<gsl::span<int, 3>, std::array<double, 3>&>::value,
844
- "!std::is_constructible<gsl::span<int, 3>, std::array<double, 3>&>");
845
- static_assert(!std::is_constructible<gsl::span<int, 3>, std::array<int, 500>&>::value,
846
- "!std::is_constructible<gsl::span<int, 3>, std::array<int, 500>&>");
847
- static_assert(!std::is_constructible<gsl::span<int, 3>, const std::array<int, 3>&>::value,
848
- "!std::is_constructible<gsl::span<int, 3>, const std::array<int, 3>&>");
849
- static_assert(!std::is_constructible<gsl::span<int, 3>, const gsl::span<int>&>::value,
850
- "!std::is_constructible<gsl::span<int, 3>, const gsl::span<int>&>");
851
- static_assert(!std::is_constructible<gsl::span<int, 3>, const gsl::span<int, 500>&>::value,
852
- "!std::is_constructible<gsl::span<int, 3>, const gsl::span<int, 500>&>");
853
- static_assert(!std::is_constructible<gsl::span<int, 3>, const gsl::span<const int>&>::value,
854
- "!std::is_constructible<gsl::span<int, 3>, const gsl::span<const int>&>");
855
- static_assert(!std::is_constructible<gsl::span<int, 3>, const gsl::span<const int, 3>&>::value,
856
- "!std::is_constructible<gsl::span<int, 3>, const gsl::span<const int, 3>&>");
857
- static_assert(!std::is_constructible<gsl::span<int, 3>, const gsl::span<const int, 500>&>::value,
858
- "!std::is_constructible<gsl::span<int, 3>, const gsl::span<const int, 500>&>");
859
- static_assert(!std::is_constructible<gsl::span<int, 3>, const gsl::span<double, 3>&>::value,
860
- "!std::is_constructible<gsl::span<int, 3>, const gsl::span<double, 3>&>");
861
-
862
- static_assert(!std::is_constructible<gsl::span<const int>, double (&)[3]>::value,
863
- "!std::is_constructible<gsl::span<const int>, double(&)[3]>");
864
- static_assert(!std::is_constructible<gsl::span<const int>, std::array<double, 3>&>::value,
865
- "!std::is_constructible<gsl::span<const int>, std::array<double, 3>&>");
866
- static_assert(!std::is_constructible<gsl::span<const int>, const gsl::span<double, 3>&>::value,
867
- "!std::is_constructible<gsl::span<const int>, const gsl::span<double, 3>&>");
868
-
869
- static_assert(!std::is_constructible<gsl::span<const int, 3>, const gsl::span<int>&>::value,
870
- "!std::is_constructible<gsl::span<const int, 3>, const gsl::span<int>&>");
871
- static_assert(!std::is_constructible<gsl::span<const int, 3>, const gsl::span<int, 500>&>::value,
872
- "!std::is_constructible<gsl::span<const int, 3>, const gsl::span<int, 500>&>");
873
- static_assert(!std::is_constructible<gsl::span<const int, 3>, const gsl::span<const int>&>::value,
874
- "!std::is_constructible<gsl::span<const int, 3>, const gsl::span<const int>&>");
875
- static_assert(
876
- !std::is_constructible<gsl::span<const int, 3>, const gsl::span<const int, 500>&>::value,
877
- "!std::is_constructible<gsl::span<const int, 3>, const gsl::span<const int, 500>&>");
878
- static_assert(!std::is_constructible<gsl::span<const int, 3>, const gsl::span<double, 3>&>::value,
879
- "!std::is_constructible<gsl::span<const int, 3>, const gsl::span<double, 3>&>");
880
-
881
- static_assert(!std::is_constructible<gsl::span<Base>, Derived (&)[3]>::value,
882
- "!std::is_constructible<gsl::span<Base>, Derived(&)[3]>");
883
- static_assert(!std::is_constructible<gsl::span<Base>, std::array<Derived, 3>&>::value,
884
- "!std::is_constructible<gsl::span<Base>, std::array<Derived, 3>&>");
885
- static_assert(!std::is_constructible<gsl::span<Base>, std::vector<Derived>&>::value,
886
- "!std::is_constructible<gsl::span<Base>, std::vector<Derived>&>");
887
- static_assert(!std::is_constructible<gsl::span<Base>, const gsl::span<Derived>&>::value,
888
- "!std::is_constructible<gsl::span<Base>, const gsl::span<Derived>&>");
889
- static_assert(!std::is_constructible<gsl::span<Base>, const gsl::span<Derived, 3>&>::value,
890
- "!std::is_constructible<gsl::span<Base>, const gsl::span<Derived, 3>&>");
891
-
892
- static_assert(!std::is_constructible<gsl::span<Base, 3>, const gsl::span<Derived, 3>&>::value,
893
- "!std::is_constructible<gsl::span<Base, 3>, const gsl::span<Derived, 3>&>");
894
- static_assert(!std::is_constructible<gsl::span<Base, 3>, Derived (&)[3]>::value,
895
- "!std::is_constructible<gsl::span<Base, 3>, Derived(&)[3]>");
896
- static_assert(!std::is_constructible<gsl::span<Base, 3>, std::array<Derived, 3>&>::value,
897
- "!std::is_constructible<gsl::span<Base, 3>, std::array<Derived, 3>&>");
898
-
899
- static_assert(!std::is_constructible<gsl::span<const Base>, Derived (&)[3]>::value,
900
- "!std::is_constructible<gsl::span<const Base>, Derived(&)[3]>");
901
- static_assert(!std::is_constructible<gsl::span<const Base>, const Derived (&)[3]>::value,
902
- "!std::is_constructible<gsl::span<const Base>, const Derived(&)[3]>");
903
- static_assert(!std::is_constructible<gsl::span<const Base>, std::array<Derived, 3>&>::value,
904
- "!std::is_constructible<gsl::span<const Base>, std::array<Derived, 3>&>");
905
- static_assert(!std::is_constructible<gsl::span<const Base>, const std::array<Derived, 3>&>::value,
906
- "!std::is_constructible<gsl::span<const Base>, const std::array<Derived, 3>&>");
907
- static_assert(!std::is_constructible<gsl::span<const Base>, const gsl::span<Derived>&>::value,
908
- "!std::is_constructible<gsl::span<const Base>, const gsl::span<Derived>&>");
909
- static_assert(!std::is_constructible<gsl::span<const Base>, const gsl::span<Derived, 3>&>::value,
910
- "!std::is_constructible<gsl::span<const Base>, const gsl::span<Derived, 3>&>");
911
- static_assert(!std::is_constructible<gsl::span<const Base>, const gsl::span<const Derived>&>::value,
912
- "!std::is_constructible<gsl::span<const Base>, const gsl::span<const Derived>&>");
913
- static_assert(
914
- !std::is_constructible<gsl::span<const Base>, const gsl::span<const Derived, 3>&>::value,
915
- "!std::is_constructible<gsl::span<const Base>, const gsl::span<const Derived, 3>&>");
916
-
917
- static_assert(!std::is_constructible<gsl::span<const Base, 3>, const gsl::span<Derived, 3>&>::value,
918
- "!std::is_constructible<gsl::span<const Base, 3>, const gsl::span<Derived, 3>&>");
919
- static_assert(
920
- !std::is_constructible<gsl::span<const Base, 3>, const gsl::span<const Derived, 3>&>::value,
921
- "!std::is_constructible<gsl::span<const Base, 3>, const gsl::span<const Derived, 3>&>");
922
-
923
- static_assert(!std::is_constructible<gsl::span<const Derived>, std::array<Base, 3>&>::value,
924
- "!std::is_constructible<gsl::span<const Derived>, std::array<Base, 3>&>");
925
- static_assert(!std::is_constructible<gsl::span<const Derived>, const std::array<Base, 3>&>::value,
926
- "!std::is_constructible<gsl::span<const Derived>, const std::array<Base, 3>&>");
927
-
928
- // no throw copy constructor
929
- static_assert(std::is_nothrow_copy_constructible<gsl::span<int>>::value,
930
- "std::is_nothrow_copy_constructible<gsl::span<int>>");
931
- static_assert(std::is_nothrow_copy_constructible<gsl::span<int, 3>>::value,
932
- "std::is_nothrow_copy_constructible<gsl::span<int, 3>>");
933
- static_assert(std::is_nothrow_copy_constructible<gsl::span<const int>>::value,
934
- "std::is_nothrow_copy_constructible<gsl::span<const int>>");
935
- static_assert(std::is_nothrow_copy_constructible<gsl::span<const int, 3>>::value,
936
- "std::is_nothrow_copy_constructible<gsl::span<const int, 3>>");
937
-
938
- // no throw copy assignment
939
- static_assert(std::is_nothrow_copy_assignable<gsl::span<int>>::value,
940
- "std::is_nothrow_copy_assignable<gsl::span<int>>");
941
- static_assert(std::is_nothrow_copy_assignable<gsl::span<int, 3>>::value,
942
- "std::is_nothrow_copy_assignable<gsl::span<int, 3>>");
943
- static_assert(std::is_nothrow_copy_assignable<gsl::span<const int>>::value,
944
- "std::is_nothrow_copy_assignable<gsl::span<const int>>");
945
- static_assert(std::is_nothrow_copy_assignable<gsl::span<const int, 3>>::value,
946
- "std::is_nothrow_copy_assignable<gsl::span<const int, 3>>");
947
-
948
- // no throw destruction
949
- static_assert(std::is_nothrow_destructible<gsl::span<int>>::value,
950
- "std::is_nothrow_destructible<gsl::span<int>>");
951
- static_assert(std::is_nothrow_destructible<gsl::span<int, 3>>::value,
952
- "std::is_nothrow_destructible<gsl::span<int, 3>>");
953
- static_assert(std::is_nothrow_destructible<gsl::span<const int>>::value,
954
- "std::is_nothrow_destructible<gsl::span<const int>>");
955
-
956
- // conversions
957
- static_assert(std::is_convertible<int (&)[3], gsl::span<int>>::value,
958
- "std::is_convertible<int(&)[3], gsl::span<int>>");
959
- static_assert(std::is_convertible<int (&)[3], gsl::span<int, 3>>::value,
960
- "std::is_convertible<int(&)[3], gsl::span<int, 3>>");
961
- static_assert(std::is_convertible<int (&)[3], gsl::span<const int>>::value,
962
- "std::is_convertible<int(&)[3], gsl::span<const int>>");
963
-
964
- static_assert(std::is_convertible<const int (&)[3], gsl::span<const int>>::value,
965
- "std::is_convertible<const int(&)[3], gsl::span<const int>>");
966
-
967
- static_assert(std::is_convertible<const gsl::span<int>&, gsl::span<int>>::value,
968
- "std::is_convertible<const gsl::span<int>&, gsl::span<int>>");
969
- static_assert(std::is_convertible<const gsl::span<int>&, gsl::span<const int>>::value,
970
- "std::is_convertible<const gsl::span<int>&, gsl::span<const int>>");
971
-
972
- static_assert(std::is_convertible<const gsl::span<int, 3>&, gsl::span<int>>::value,
973
- "std::is_convertible<const gsl::span<int, 3>&, gsl::span<int>>");
974
- static_assert(std::is_convertible<const gsl::span<int, 3>&, gsl::span<int, 3>>::value,
975
- "std::is_convertible<const gsl::span<int, 3>&, gsl::span<int, 3>>");
976
- static_assert(std::is_convertible<const gsl::span<int, 3>&, gsl::span<const int>>::value,
977
- "std::is_convertible<const gsl::span<int, 3>&, gsl::span<const int>>");
978
- static_assert(std::is_convertible<const gsl::span<int, 3>&, gsl::span<const int, 3>>::value,
979
- "std::is_convertible<const gsl::span<int, 3>&, gsl::span<const int, 3>>");
980
- static_assert(std::is_convertible<const gsl::span<int, 500>&, gsl::span<int>>::value,
981
- "std::is_convertible<const gsl::span<int, 500>&, gsl::span<int>>");
982
- static_assert(std::is_convertible<const gsl::span<int, 500>&, gsl::span<const int>>::value,
983
- "std::is_convertible<const gsl::span<int, 500>&, gsl::span<const int>>");
984
-
985
- static_assert(std::is_convertible<const gsl::span<const int>&, gsl::span<const int>>::value,
986
- "std::is_convertible<const gsl::span<const int>&, gsl::span<const int>>");
987
-
988
- static_assert(std::is_convertible<const gsl::span<const int, 3>&, gsl::span<const int>>::value,
989
- "std::is_convertible<const gsl::span<const int, 3>&, gsl::span<const int>>");
990
- static_assert(std::is_convertible<const gsl::span<const int, 3>&, gsl::span<const int, 3>>::value,
991
- "std::is_convertible<const gsl::span<const int, 3>&, gsl::span<const int, 3>>");
992
- static_assert(std::is_convertible<const gsl::span<const int, 500>&, gsl::span<const int>>::value,
993
- "std::is_convertible<const gsl::span<const int, 500>&, gsl::span<const int>>");
994
-
995
- static_assert(std::is_convertible<std::array<int, 3>&, gsl::span<int>>::value,
996
- "std::is_convertible<std::array<int, 3>&, gsl::span<int>>");
997
- static_assert(std::is_convertible<std::array<int, 3>&, gsl::span<int, 3>>::value,
998
- "std::is_convertible<std::array<int, 3>&, gsl::span<int, 3>>");
999
- static_assert(std::is_convertible<std::array<int, 3>&, gsl::span<const int>>::value,
1000
- "std::is_convertible<std::array<int, 3>&, gsl::span<const int>>");
1001
-
1002
- static_assert(std::is_convertible<const std::array<int, 3>&, gsl::span<const int>>::value,
1003
- "std::is_convertible<const std::array<int, 3>&, gsl::span<const int>>");
1004
-
1005
- #if __cplusplus >= 201703l
1006
- template <typename U, typename = void>
1007
- static constexpr bool AsWritableBytesCompilesFor = false;
1008
-
1009
- template <typename U>
1010
- static constexpr bool
1011
- AsWritableBytesCompilesFor<U, void_t<decltype(as_writable_bytes(declval<U>()))>> = true;
1012
-
1013
- static_assert(AsWritableBytesCompilesFor<gsl::span<int>>,
1014
- "AsWritableBytesCompilesFor<gsl::span<int>>");
1015
- static_assert(AsWritableBytesCompilesFor<gsl::span<int, 9>>,
1016
- "AsWritableBytesCompilesFor<gsl::span<int, 9>>");
1017
- static_assert(!AsWritableBytesCompilesFor<gsl::span<const int>>,
1018
- "!AsWritableBytesCompilesFor<gsl::span<const int>>");
1019
- static_assert(!AsWritableBytesCompilesFor<gsl::span<const int, 9>>,
1020
- "!AsWritableBytesCompilesFor<gsl::span<const int, 9>>");
1021
- #endif // __cplusplus >= 201703l