passenger 5.3.7 → 6.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/CHANGELOG +651 -19
- data/CONTRIBUTING.md +1 -1
- data/CONTRIBUTORS +26 -0
- data/LICENSE +1 -1
- data/README.md +5 -12
- data/Rakefile +15 -4
- data/bin/passenger +2 -2
- data/bin/passenger-config +2 -2
- data/bin/passenger-install-apache2-module +7 -2
- data/bin/passenger-install-nginx-module +25 -8
- data/bin/passenger-memory-stats +67 -14
- data/bin/passenger-status +46 -6
- data/build/agent.rb +5 -3
- data/build/apache2.rb +3 -3
- data/build/basics.rb +12 -6
- data/build/common_library.rb +8 -7
- data/build/cxx_tests.rb +20 -9
- data/build/integration_tests.rb +10 -9
- data/build/misc.rb +5 -3
- data/build/nginx.rb +2 -2
- data/build/node_tests.rb +2 -2
- data/build/oxt_tests.rb +2 -2
- data/build/packaging.rb +6 -4
- data/build/ruby_extension.rb +2 -2
- data/build/ruby_tests.rb +3 -3
- data/build/schema_printer.rb +2 -2
- data/build/support/cplusplus.rb +2 -2
- data/build/support/cxx_dependency_map.rb +329 -59
- data/build/support/general.rb +2 -2
- data/build/support/vendor/cxx_hinted_parser/LICENSE.md +1 -1
- data/build/support/vendor/cxx_hinted_parser/lib/cxx_hinted_parser/parser.rb +2 -2
- data/build/support/vendor/cxx_hinted_parser/lib/cxx_hinted_parser.rb +2 -2
- data/build/support/vendor/cxxcodebuilder/LICENSE.md +1 -1
- data/build/support/vendor/cxxcodebuilder/lib/cxxcodebuilder/builder.rb +57 -4
- data/build/support/vendor/cxxcodebuilder/lib/cxxcodebuilder/initializer_builder.rb +2 -2
- data/build/support/vendor/cxxcodebuilder/lib/cxxcodebuilder.rb +2 -2
- data/build/test_basics.rb +29 -15
- data/dev/copy_boost_headers +142 -79
- data/dev/index_cxx_dependencies.rb +1 -1
- data/dev/nginx_version_sha256 +72 -0
- data/dev/websocketpp.patch +39 -0
- data/doc/DesignAspects/LimitedGemDependencies.md +39 -0
- data/doc/DesignAspects/NoGemActivationDuringRubyLoaderInitialization.md +27 -0
- data/doc/templates/markdown.html.erb +2 -6
- data/package.json +20 -18
- data/passenger.gemspec +17 -3
- data/resources/mime.types +1 -0
- data/resources/release.txt +1 -0
- data/resources/templates/apache2/deployment_example.txt.erb +1 -1
- data/resources/templates/config/installation_utils/user_support_binaries_dir_not_writable.txt.erb +1 -0
- data/resources/templates/error_renderer/with_details/dist/bundle.js +2 -33
- data/resources/templates/error_renderer/with_details/dist/styles.css +2 -2
- data/resources/templates/error_renderer/with_details/src/GetHelpView.jsx +1 -1
- data/resources/templates/error_renderer/with_details/src/bootstrap/bootstrap.css +0 -0
- data/resources/templates/error_renderer/with_details/src/bootstrap/bootstrap.js +0 -0
- data/resources/templates/error_renderer/with_details/src/bootstrap/config.json +0 -0
- data/resources/templates/error_renderer/with_details/src/index.html.template +0 -2
- data/resources/templates/error_renderer/with_details/webpack.config.js +13 -16
- data/resources/templates/error_renderer/without_details/dist/bundle.js +0 -1
- data/resources/templates/error_renderer/without_details/dist/styles.css +1 -1
- data/resources/templates/error_renderer/without_details/webpack.config.js +13 -16
- data/resources/templates/nginx/deployment_example.txt.erb +1 -1
- data/resources/templates/standalone/global.erb +4 -0
- data/resources/templates/standalone/http.erb +3 -0
- data/resources/templates/standalone/rails_asset_pipeline.erb +1 -1
- data/resources/templates/standalone/server.erb +4 -0
- data/src/agent/AgentMain.cpp +7 -9
- data/src/agent/Core/AdminPanelConnector.h +5 -6
- data/src/agent/Core/ApiServer.h +38 -3
- data/src/agent/Core/ApplicationPool/AbstractSession.h +2 -2
- data/src/agent/Core/ApplicationPool/BasicGroupInfo.h +2 -2
- data/src/agent/Core/ApplicationPool/BasicProcessInfo.h +2 -2
- data/src/agent/Core/ApplicationPool/Common.h +2 -2
- data/src/agent/Core/ApplicationPool/Context.h +7 -4
- data/src/agent/Core/ApplicationPool/Group/InitializationAndShutdown.cpp +10 -2
- data/src/agent/Core/ApplicationPool/Group/InternalUtils.cpp +14 -6
- data/src/agent/Core/ApplicationPool/Group/LifetimeAndBasics.cpp +10 -2
- data/src/agent/Core/ApplicationPool/Group/Miscellaneous.cpp +11 -2
- data/src/agent/Core/ApplicationPool/Group/OutOfBandWork.cpp +12 -3
- data/src/agent/Core/ApplicationPool/Group/ProcessListManagement.cpp +86 -6
- data/src/agent/Core/ApplicationPool/Group/SessionManagement.cpp +42 -12
- data/src/agent/Core/ApplicationPool/Group/SpawningAndRestarting.cpp +10 -2
- data/src/agent/Core/ApplicationPool/Group/StateInspection.cpp +15 -4
- data/src/agent/Core/ApplicationPool/Group/Verification.cpp +10 -2
- data/src/agent/Core/ApplicationPool/Group.h +19 -8
- data/src/agent/Core/ApplicationPool/Implementation.cpp +2 -3
- data/src/agent/Core/ApplicationPool/Options.h +36 -13
- data/src/agent/Core/ApplicationPool/Pool/AnalyticsCollection.cpp +7 -2
- data/src/agent/Core/ApplicationPool/Pool/GarbageCollection.cpp +8 -3
- data/src/agent/Core/ApplicationPool/Pool/GeneralUtils.cpp +7 -2
- data/src/agent/Core/ApplicationPool/Pool/GroupUtils.cpp +7 -2
- data/src/agent/Core/ApplicationPool/Pool/InitializationAndShutdown.cpp +7 -2
- data/src/agent/Core/ApplicationPool/Pool/Miscellaneous.cpp +7 -2
- data/src/agent/Core/ApplicationPool/Pool/ProcessUtils.cpp +8 -3
- data/src/agent/Core/ApplicationPool/Pool/StateInspection.cpp +18 -4
- data/src/agent/Core/ApplicationPool/Pool.h +12 -6
- data/src/agent/Core/ApplicationPool/Process.cpp +2 -2
- data/src/agent/Core/ApplicationPool/Process.h +27 -8
- data/src/agent/Core/ApplicationPool/Session.h +8 -3
- data/src/agent/Core/ApplicationPool/Socket.h +2 -2
- data/src/agent/Core/ApplicationPool/TestSession.h +2 -2
- data/src/agent/Core/Config.h +39 -8
- data/src/agent/Core/ConfigChange.cpp +2 -2
- data/src/agent/Core/ConfigChange.h +2 -2
- data/src/agent/Core/Controller/AppResponse.h +2 -3
- data/src/agent/Core/Controller/BufferBody.cpp +2 -2
- data/src/agent/Core/Controller/CheckoutSession.cpp +50 -16
- data/src/agent/Core/Controller/Client.h +2 -2
- data/src/agent/Core/Controller/Config.cpp +2 -2
- data/src/agent/Core/Controller/Config.h +55 -13
- data/src/agent/Core/Controller/ForwardResponse.cpp +15 -2
- data/src/agent/Core/Controller/Hooks.cpp +2 -2
- data/src/agent/Core/Controller/Implementation.cpp +2 -2
- data/src/agent/Core/Controller/InitRequest.cpp +21 -10
- data/src/agent/Core/Controller/InitializationAndShutdown.cpp +5 -2
- data/src/agent/Core/Controller/InternalUtils.cpp +34 -8
- data/src/agent/Core/Controller/Miscellaneous.cpp +2 -2
- data/src/agent/Core/Controller/Request.h +2 -2
- data/src/agent/Core/Controller/SendRequest.cpp +4 -4
- data/src/agent/Core/Controller/StateInspection.cpp +2 -2
- data/src/agent/Core/Controller/TurboCaching.h +2 -2
- data/src/agent/Core/Controller.h +8 -3
- data/src/agent/Core/CoreMain.cpp +78 -54
- data/src/agent/Core/OptionParser.h +23 -2
- data/src/agent/Core/ResponseCache.h +5 -4
- data/src/agent/Core/SecurityUpdateChecker.h +7 -7
- data/src/agent/Core/SpawningKit/Config/AutoGeneratedCode.h +22 -2
- data/src/agent/Core/SpawningKit/Config/AutoGeneratedCode.h.cxxcodebuilder +2 -2
- data/src/agent/Core/SpawningKit/Config.h +26 -2
- data/src/agent/Core/SpawningKit/Context.h +3 -2
- data/src/agent/Core/SpawningKit/DirectSpawner.h +2 -2
- data/src/agent/Core/SpawningKit/DummySpawner.h +2 -2
- data/src/agent/Core/SpawningKit/ErrorRenderer.h +7 -2
- data/src/agent/Core/SpawningKit/Exceptions.h +2 -2
- data/src/agent/Core/SpawningKit/Factory.h +2 -2
- data/src/agent/Core/SpawningKit/Handshake/BackgroundIOCapturer.h +3 -3
- data/src/agent/Core/SpawningKit/Handshake/Perform.h +8 -7
- data/src/agent/Core/SpawningKit/Handshake/Prepare.h +8 -56
- data/src/agent/Core/SpawningKit/Handshake/Session.h +5 -2
- data/src/agent/Core/SpawningKit/Handshake/WorkDir.h +12 -6
- data/src/agent/Core/SpawningKit/Journey.h +2 -2
- data/src/agent/Core/SpawningKit/PipeWatcher.h +21 -6
- data/src/agent/Core/SpawningKit/Result/AutoGeneratedCode.h +2 -2
- data/src/agent/Core/SpawningKit/Result/AutoGeneratedCode.h.cxxcodebuilder +2 -2
- data/src/agent/Core/SpawningKit/Result.h +2 -2
- data/src/agent/Core/SpawningKit/SmartSpawner.h +9 -5
- data/src/agent/Core/SpawningKit/Spawner.h +29 -7
- data/src/agent/Core/SpawningKit/UserSwitchingRules.h +17 -10
- data/src/agent/Core/TelemetryCollector.h +4 -3
- data/src/agent/ExecHelper/ExecHelperMain.cpp +12 -14
- data/src/agent/FileReadHelper/FileReadHelperMain.cpp +195 -0
- data/src/agent/MainFunctions.h +38 -0
- data/src/agent/Shared/ApiAccountUtils.h +2 -2
- data/src/agent/Shared/ApiServerUtils.h +6 -5
- data/src/agent/Shared/ApplicationPoolApiKey.h +4 -2
- data/src/agent/Shared/Fundamentals/AbortHandler.cpp +90 -11
- data/src/agent/Shared/Fundamentals/AbortHandler.h +4 -2
- data/src/agent/Shared/Fundamentals/Initialization.cpp +12 -6
- data/src/agent/Shared/Fundamentals/Initialization.h +5 -5
- data/src/agent/Shared/Fundamentals/Utils.cpp +2 -2
- data/src/agent/Shared/Fundamentals/Utils.h +2 -2
- data/src/agent/SpawnEnvSetupper/SpawnEnvSetupperMain.cpp +36 -12
- data/src/agent/SystemMetrics/SystemMetricsMain.cpp +3 -2
- data/src/agent/TempDirToucher/TempDirToucherMain.cpp +10 -6
- data/src/agent/Watchdog/AgentWatcher.cpp +2 -2
- data/src/agent/Watchdog/ApiServer.h +3 -3
- data/src/agent/Watchdog/Config.h +22 -3
- data/src/agent/Watchdog/CoreWatcher.cpp +2 -2
- data/src/agent/Watchdog/InstanceDirToucher.cpp +3 -3
- data/src/agent/Watchdog/WatchdogMain.cpp +23 -22
- data/src/apache2_module/Bucket.cpp +2 -2
- data/src/apache2_module/Bucket.h +2 -2
- data/src/apache2_module/CBindings.cpp +2 -2
- data/src/apache2_module/Config.cpp +3 -3
- data/src/apache2_module/Config.h +2 -2
- data/src/apache2_module/ConfigGeneral/AutoGeneratedDefinitions.cpp +68 -28
- data/src/apache2_module/ConfigGeneral/AutoGeneratedDefinitions.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.cpp +32 -2
- data/src/apache2_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/ConfigGeneral/AutoGeneratedSetterFuncs.cpp +121 -3
- data/src/apache2_module/ConfigGeneral/AutoGeneratedSetterFuncs.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/ConfigGeneral/Common.h +2 -2
- data/src/apache2_module/ConfigGeneral/ManifestGeneration.h +7 -5
- data/src/apache2_module/ConfigGeneral/SetterFuncs.h +2 -2
- data/src/apache2_module/DirConfig/AutoGeneratedCreateFunction.cpp +25 -2
- data/src/apache2_module/DirConfig/AutoGeneratedCreateFunction.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/DirConfig/AutoGeneratedHeaderSerialization.cpp +14 -2
- data/src/apache2_module/DirConfig/AutoGeneratedHeaderSerialization.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/DirConfig/AutoGeneratedManifestGeneration.cpp +65 -2
- data/src/apache2_module/DirConfig/AutoGeneratedManifestGeneration.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/DirConfig/AutoGeneratedMergeFunction.cpp +37 -2
- data/src/apache2_module/DirConfig/AutoGeneratedMergeFunction.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/DirConfig/AutoGeneratedStruct.h +84 -4
- data/src/apache2_module/DirConfig/AutoGeneratedStruct.h.cxxcodebuilder +5 -2
- data/src/apache2_module/DirectoryMapper.h +16 -5
- data/src/apache2_module/Hooks.cpp +51 -7
- data/src/apache2_module/Hooks.h +2 -2
- data/src/apache2_module/ServerConfig/AutoGeneratedManifestGeneration.cpp +31 -2
- data/src/apache2_module/ServerConfig/AutoGeneratedManifestGeneration.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/ServerConfig/AutoGeneratedStruct.h +57 -21
- data/src/apache2_module/ServerConfig/AutoGeneratedStruct.h.cxxcodebuilder +4 -3
- data/src/apache2_module/Utils.h +2 -2
- data/src/apache2_module/mod_passenger.c +2 -2
- data/src/cxx_supportlib/Algorithms/Hasher.cpp +2 -2
- data/src/cxx_supportlib/Algorithms/Hasher.h +2 -2
- data/src/cxx_supportlib/Algorithms/MovingAverage.h +2 -8
- data/src/cxx_supportlib/AppLocalConfigFileUtils.h +148 -0
- data/src/cxx_supportlib/AppTypeDetector/CBindings.cpp +14 -3
- data/src/cxx_supportlib/AppTypeDetector/CBindings.h +4 -2
- data/src/cxx_supportlib/AppTypeDetector/Detector.h +40 -6
- data/src/cxx_supportlib/BackgroundEventLoop.cpp +7 -3
- data/src/cxx_supportlib/BackgroundEventLoop.h +2 -2
- data/src/cxx_supportlib/ConfigKit/AsyncUtils.h +2 -2
- data/src/cxx_supportlib/ConfigKit/Common.h +3 -3
- data/src/cxx_supportlib/ConfigKit/ConfigKit.h +2 -2
- data/src/cxx_supportlib/ConfigKit/DummyTranslator.h +2 -2
- data/src/cxx_supportlib/ConfigKit/PrefixTranslator.h +2 -2
- data/src/cxx_supportlib/ConfigKit/Schema.h +3 -3
- data/src/cxx_supportlib/ConfigKit/SchemaUtils.h +2 -2
- data/src/cxx_supportlib/ConfigKit/Store.h +2 -2
- data/src/cxx_supportlib/ConfigKit/SubComponentUtils.h +2 -2
- data/src/cxx_supportlib/ConfigKit/TableTranslator.h +2 -2
- data/src/cxx_supportlib/ConfigKit/Translator.h +3 -3
- data/src/cxx_supportlib/ConfigKit/Utils.h +2 -2
- data/src/cxx_supportlib/Constants.h +7 -5
- data/src/cxx_supportlib/Constants.h.cxxcodebuilder +2 -2
- data/src/cxx_supportlib/DataStructures/HashMap.h +2 -2
- data/src/cxx_supportlib/DataStructures/HashedStaticString.h +4 -2
- data/src/cxx_supportlib/DataStructures/LString.cpp +2 -2
- data/src/cxx_supportlib/DataStructures/LString.h +6 -2
- data/src/cxx_supportlib/DataStructures/StringKeyTable.h +3 -3
- data/src/cxx_supportlib/DataStructures/StringMap.h +2 -3
- data/src/cxx_supportlib/Exceptions.cpp +2 -2
- data/src/cxx_supportlib/Exceptions.h +2 -2
- data/src/cxx_supportlib/FileDescriptor.h +10 -2
- data/src/cxx_supportlib/FileTools/FileManip.cpp +12 -3
- data/src/cxx_supportlib/FileTools/FileManip.h +18 -2
- data/src/cxx_supportlib/FileTools/LargeFiles.h +2 -2
- data/src/cxx_supportlib/FileTools/PathManip.cpp +13 -4
- data/src/cxx_supportlib/FileTools/PathManip.h +2 -2
- data/src/cxx_supportlib/FileTools/PathManipCBindings.cpp +2 -2
- data/src/cxx_supportlib/FileTools/PathManipCBindings.h +2 -2
- data/src/cxx_supportlib/FileTools/PathSecurityCheck.cpp +2 -2
- data/src/cxx_supportlib/FileTools/PathSecurityCheck.h +2 -2
- data/src/cxx_supportlib/Hooks.h +3 -2
- data/src/cxx_supportlib/IOTools/BufferedIO.h +3 -3
- data/src/cxx_supportlib/IOTools/IOUtils.cpp +8 -12
- data/src/cxx_supportlib/IOTools/IOUtils.h +2 -2
- data/src/cxx_supportlib/IOTools/MessageIO.h +3 -3
- data/src/cxx_supportlib/IOTools/MessageSerialization.h +2 -2
- data/src/cxx_supportlib/InstanceDirectory.h +2 -2
- data/src/cxx_supportlib/Integrations/LibevJsonUtils.h +5 -5
- data/src/cxx_supportlib/JsonTools/Autocast.h +2 -2
- data/src/cxx_supportlib/JsonTools/CBindings.cpp +2 -4
- data/src/cxx_supportlib/JsonTools/CBindings.h +2 -2
- data/src/cxx_supportlib/JsonTools/JsonUtils.h +6 -6
- data/src/cxx_supportlib/LoggingKit/Assert.h +2 -2
- data/src/cxx_supportlib/LoggingKit/Config.h +4 -2
- data/src/cxx_supportlib/LoggingKit/Context.h +18 -23
- data/src/cxx_supportlib/LoggingKit/Forward.h +2 -4
- data/src/cxx_supportlib/LoggingKit/Implementation.cpp +53 -83
- data/src/cxx_supportlib/LoggingKit/Logging.h +2 -2
- data/src/cxx_supportlib/LoggingKit/LoggingKit.h +2 -2
- data/src/cxx_supportlib/LveLoggingDecorator.h +2 -2
- data/src/cxx_supportlib/MemoryKit/mbuf.cpp +14 -6
- data/src/cxx_supportlib/MemoryKit/mbuf.h +3 -3
- data/src/cxx_supportlib/MemoryKit/palloc.cpp +1 -1
- data/src/cxx_supportlib/MemoryKit/palloc.h +1 -1
- data/src/cxx_supportlib/ProcessManagement/Ruby.cpp +2 -2
- data/src/cxx_supportlib/ProcessManagement/Ruby.h +2 -2
- data/src/cxx_supportlib/ProcessManagement/Spawn.cpp +2 -2
- data/src/cxx_supportlib/ProcessManagement/Spawn.h +2 -2
- data/src/cxx_supportlib/ProcessManagement/Utils.cpp +3 -3
- data/src/cxx_supportlib/ProcessManagement/Utils.h +2 -2
- data/src/cxx_supportlib/RandomGenerator.h +2 -2
- data/src/cxx_supportlib/ResourceLocator.h +3 -3
- data/src/cxx_supportlib/SafeLibev.h +6 -6
- data/src/cxx_supportlib/SecurityKit/Crypto.cpp +5 -96
- data/src/cxx_supportlib/SecurityKit/Crypto.h +2 -10
- data/src/cxx_supportlib/SecurityKit/MemZeroGuard.h +2 -2
- data/src/cxx_supportlib/ServerKit/AcceptLoadBalancer.h +3 -3
- data/src/cxx_supportlib/ServerKit/Channel.h +2 -2
- data/src/cxx_supportlib/ServerKit/Client.h +2 -2
- data/src/cxx_supportlib/ServerKit/ClientRef.h +2 -2
- data/src/cxx_supportlib/ServerKit/Config.h +2 -2
- data/src/cxx_supportlib/ServerKit/Context.h +8 -2
- data/src/cxx_supportlib/ServerKit/CookieUtils.h +2 -2
- data/src/cxx_supportlib/ServerKit/Errors.h +5 -4
- data/src/cxx_supportlib/ServerKit/FdSinkChannel.h +2 -2
- data/src/cxx_supportlib/ServerKit/FdSourceChannel.h +2 -2
- data/src/cxx_supportlib/ServerKit/FileBufferedChannel.h +2 -2
- data/src/cxx_supportlib/ServerKit/FileBufferedFdSinkChannel.h +2 -2
- data/src/cxx_supportlib/ServerKit/HeaderTable.h +2 -2
- data/src/cxx_supportlib/ServerKit/Hooks.h +4 -4
- data/src/cxx_supportlib/ServerKit/HttpChunkedBodyParser.h +3 -3
- data/src/cxx_supportlib/ServerKit/HttpChunkedBodyParserState.h +2 -2
- data/src/cxx_supportlib/ServerKit/HttpClient.h +2 -2
- data/src/cxx_supportlib/ServerKit/HttpHeaderParser.h +103 -71
- data/src/cxx_supportlib/ServerKit/HttpHeaderParserState.h +6 -3
- data/src/cxx_supportlib/ServerKit/HttpRequest.h +4 -4
- data/src/cxx_supportlib/ServerKit/HttpRequestRef.h +2 -2
- data/src/cxx_supportlib/ServerKit/HttpServer.h +20 -14
- data/src/cxx_supportlib/ServerKit/Implementation.cpp +2 -2
- data/src/cxx_supportlib/ServerKit/Server.h +2 -8
- data/src/cxx_supportlib/ServerKit/llerrors.h +84 -0
- data/src/cxx_supportlib/ServerKit/llhttp.c +10168 -0
- data/src/cxx_supportlib/ServerKit/llhttp.h +903 -0
- data/src/cxx_supportlib/ServerKit/llhttp_api.c +510 -0
- data/src/cxx_supportlib/ServerKit/llhttp_http.c +170 -0
- data/src/cxx_supportlib/ServerKit/llversion.h +12 -0
- data/src/cxx_supportlib/ServerKit/url_parser.c +574 -0
- data/src/cxx_supportlib/ServerKit/url_parser.h +74 -0
- data/src/cxx_supportlib/StaticString.h +7 -3
- data/src/cxx_supportlib/StrIntTools/DateParsing.h +3 -3
- data/src/cxx_supportlib/StrIntTools/StrIntUtils.cpp +14 -5
- data/src/cxx_supportlib/StrIntTools/StrIntUtils.h +7 -2
- data/src/cxx_supportlib/StrIntTools/StrIntUtilsNoStrictAliasing.cpp +2 -2
- data/src/cxx_supportlib/StrIntTools/StringScanning.h +2 -2
- data/src/cxx_supportlib/StrIntTools/Template.h +2 -2
- data/src/cxx_supportlib/SystemTools/ContainerHelpers.h +59 -4
- data/src/cxx_supportlib/SystemTools/ProcessMetricsCollector.h +3 -3
- data/src/cxx_supportlib/SystemTools/SystemMetricsCollector.h +4 -4
- data/src/cxx_supportlib/SystemTools/SystemTime.cpp +2 -2
- data/src/cxx_supportlib/SystemTools/SystemTime.h +2 -2
- data/src/cxx_supportlib/SystemTools/UserDatabase.cpp +16 -16
- data/src/cxx_supportlib/SystemTools/UserDatabase.h +8 -12
- data/src/cxx_supportlib/Utils/AnsiColorConstants.h +13 -11
- data/src/cxx_supportlib/Utils/AsyncSignalSafeUtils.h +4 -2
- data/src/cxx_supportlib/Utils/BlockingQueue.h +2 -2
- data/src/cxx_supportlib/Utils/CachedFileStat.cpp +2 -2
- data/src/cxx_supportlib/Utils/CachedFileStat.h +2 -2
- data/src/cxx_supportlib/Utils/CachedFileStat.hpp +2 -2
- data/src/cxx_supportlib/Utils/ClassUtils.h +2 -2
- data/src/cxx_supportlib/Utils/Curl.h +2 -2
- data/src/cxx_supportlib/Utils/FastStringStream.h +2 -2
- data/src/cxx_supportlib/Utils/FileChangeChecker.h +2 -2
- data/src/cxx_supportlib/Utils/HttpConstants.h +3 -3
- data/src/cxx_supportlib/Utils/IniFile.h +2 -2
- data/src/cxx_supportlib/Utils/MessagePassing.h +2 -2
- data/src/cxx_supportlib/Utils/OptionParsing.h +2 -2
- data/src/cxx_supportlib/Utils/ReleaseableScopedPointer.h +2 -2
- data/src/cxx_supportlib/Utils/ScopeGuard.h +2 -2
- data/src/cxx_supportlib/Utils/SpeedMeter.h +2 -5
- data/src/cxx_supportlib/Utils/Timer.h +2 -2
- data/src/cxx_supportlib/Utils/VariantMap.h +2 -2
- data/src/cxx_supportlib/Utils.cpp +3 -3
- data/src/cxx_supportlib/Utils.h +2 -2
- data/src/cxx_supportlib/WatchdogLauncher.cpp +2 -2
- data/src/cxx_supportlib/WatchdogLauncher.h +3 -5
- data/src/cxx_supportlib/WebSocketCommandReverseServer.h +22 -21
- data/src/cxx_supportlib/WrapperRegistry/CBindings.cpp +2 -2
- data/src/cxx_supportlib/WrapperRegistry/CBindings.h +2 -2
- data/src/cxx_supportlib/WrapperRegistry/Entry.h +2 -2
- data/src/cxx_supportlib/WrapperRegistry/Registry.h +2 -2
- data/src/cxx_supportlib/oxt/backtrace.hpp +1 -1
- data/src/cxx_supportlib/oxt/detail/backtrace_disabled.hpp +1 -1
- data/src/cxx_supportlib/oxt/detail/backtrace_enabled.hpp +1 -1
- data/src/cxx_supportlib/oxt/detail/context.hpp +1 -1
- data/src/cxx_supportlib/oxt/detail/spin_lock_darwin.hpp +1 -1
- data/src/cxx_supportlib/oxt/detail/spin_lock_gcc_x86.hpp +1 -1
- data/src/cxx_supportlib/oxt/detail/spin_lock_portable.hpp +1 -1
- data/src/cxx_supportlib/oxt/detail/spin_lock_pthreads.hpp +1 -1
- data/src/cxx_supportlib/oxt/detail/tracable_exception_disabled.hpp +1 -1
- data/src/cxx_supportlib/oxt/detail/tracable_exception_enabled.hpp +1 -1
- data/src/cxx_supportlib/oxt/dynamic_thread_group.hpp +6 -2
- data/src/cxx_supportlib/oxt/implementation.cpp +13 -3
- data/src/cxx_supportlib/oxt/initialize.hpp +1 -1
- data/src/cxx_supportlib/oxt/macros.hpp +1 -1
- data/src/cxx_supportlib/oxt/spin_lock.hpp +1 -1
- data/src/cxx_supportlib/oxt/system_calls.cpp +22 -15
- data/src/cxx_supportlib/oxt/system_calls.hpp +1 -1
- data/src/cxx_supportlib/oxt/thread.hpp +3 -3
- data/src/cxx_supportlib/oxt/tracable_exception.hpp +1 -1
- data/src/cxx_supportlib/vendor-copy/adhoc_lve.h +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/compare.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/case_conv.hpp +5 -2
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/classification.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/find_format_all.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/find_iterator.hpp +11 -3
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/finder.hpp +15 -15
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/formatter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/trim.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/find_format.hpp +1 -2
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/find_iterator.hpp +27 -1
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/finder.hpp +0 -4
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/formatter.hpp +0 -1
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/iter_find.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/predicate.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/split.hpp +12 -0
- data/src/cxx_supportlib/vendor-modified/boost/align/aligned_alloc.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/aligned_alloc_posix.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/aligned_alloc_sunos.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/is_alignment.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_completion_executor.hpp +338 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_completion_handler.hpp +824 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_io_executor.hpp +353 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/append.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/as_tuple.hpp +154 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +115 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_cancellation_slot.hpp +223 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +119 -33
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_immediate_executor.hpp +283 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/associator.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +834 -107
- data/src/cxx_supportlib/vendor-modified/boost/asio/awaitable.hpp +144 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +651 -329
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +206 -124
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_file.hpp +826 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_io_object.hpp +4 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_random_access_file.hpp +691 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +657 -331
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_readable_pipe.hpp +628 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +376 -171
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_serial_port.hpp +413 -114
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_signal_set.hpp +325 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +427 -248
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +1239 -517
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_iostream.hpp +22 -121
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_streambuf.hpp +16 -81
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_file.hpp +746 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +494 -252
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf.hpp +13 -15
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf_fwd.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +251 -132
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_writable_pipe.hpp +624 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_allocator.hpp +598 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_cancellation_slot.hpp +615 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +235 -182
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_immediate_executor.hpp +618 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffer.hpp +961 -370
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffer_registration.hpp +320 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream.hpp +55 -39
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream.hpp +61 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream.hpp +55 -39
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffers_iterator.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancel_after.hpp +303 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancel_at.hpp +296 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_signal.hpp +247 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_state.hpp +237 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_type.hpp +159 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/co_composed.hpp +1323 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/co_spawn.hpp +525 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/completion_condition.hpp +50 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/compose.hpp +130 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/composed.hpp +415 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +468 -181
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect_pipe.hpp +85 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/consign.hpp +77 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/coroutine.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/default_completion_token.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/defer.hpp +154 -43
- data/src/cxx_supportlib/vendor-modified/boost/asio/deferred.hpp +721 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detached.hpp +107 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array.hpp +2 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array_fwd.hpp +2 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/assert.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/atomic_count.hpp +24 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_cancellation_state.hpp +166 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_completion_cond.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +265 -370
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/blocking_executor_op.hpp +109 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_resize_guard.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_sequence_adapter.hpp +300 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffered_stream_storage.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/call_stack.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono.hpp +2 -23
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono_time_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_handler.hpp +12 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_message.hpp +129 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_payload.hpp +222 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_payload_handler.hpp +81 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/composed_work.hpp +254 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/concurrency_hint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_event.hpp +9 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +700 -722
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/consuming_buffers.hpp +40 -11
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstddef.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstdint.hpp +3 -23
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/date_time_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +74 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dependent_type.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_ops.hpp +65 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_read_op.hpp +76 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_write_op.hpp +75 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +36 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +36 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/event.hpp +3 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/eventfd_select_interrupter.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/exception.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_function.hpp +154 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_op.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fd_set_adapter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fenced_block.hpp +3 -43
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/functional.hpp +5 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/future.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/global.hpp +3 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +31 -145
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_cont_helpers.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_tracking.hpp +27 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +24 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +452 -36
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/hash_map.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/buffer_sequence_adapter.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/descriptor_ops.ipp +605 -85
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +21 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +28 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +21 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +47 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/eventfd_select_interrupter.ipp +20 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/handler_tracking.ipp +47 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_descriptor_service.ipp +207 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_file_service.ipp +142 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.hpp +114 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.ipp +916 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_socket_service_base.ipp +251 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +21 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +49 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/null_event.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/pipe_select_interrupter.ipp +11 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_event.ipp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_mutex.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_serial_port_service.ipp +170 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_thread.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_tss_ptr.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_descriptor_service.ipp +23 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_socket_service_base.ipp +32 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/resolver_service_base.ipp +39 -35
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/scheduler.ipp +110 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +25 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +74 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/signal_set_service.ipp +185 -28
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_ops.ipp +828 -355
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_select_interrupter.ipp +19 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +209 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.ipp +25 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.hpp +8 -40
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.ipp +34 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/thread_context.ipp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/throw_error.ipp +10 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +17 -11
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_set.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiate_defer.hpp +209 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiate_dispatch.hpp +195 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiate_post.hpp +209 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiation_base.hpp +64 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_control.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_object_impl.hpp +179 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_at_op.hpp +197 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_op.hpp +192 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_service.hpp +689 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_at_op.hpp +191 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_op.hpp +187 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_file_service.hpp +263 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_null_buffers_op.hpp +116 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_operation.hpp +86 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_service.hpp +321 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_accept_op.hpp +282 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_connect_op.hpp +142 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recv_op.hpp +207 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvfrom_op.hpp +208 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvmsg_op.hpp +194 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_send_op.hpp +193 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_sendto_op.hpp +196 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service.hpp +631 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service_base.hpp +665 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_wait_op.hpp +114 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_buffer_sequence.hpp +89 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/keyword_tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +37 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/limits.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/local_free_on_block_exit.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +83 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/mutex.hpp +3 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/non_const_lvalue.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/noncopyable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_event.hpp +7 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_global.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_mutex.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_reactor.hpp +19 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_signal_blocker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_socket_service.hpp +63 -52
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_static_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_thread.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/object_pool.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/op_queue.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/operation.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pipe_select_interrupter.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +30 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_event.hpp +15 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_fd_set_adapter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_global.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_serial_port_service.hpp +251 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_signal_blocker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_static_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_thread.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +60 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +237 -55
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_null_buffers_op.hpp +49 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_accept_op.hpp +139 -33
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_connect_op.hpp +59 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recv_op.hpp +81 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvfrom_op.hpp +81 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvmsg_op.hpp +65 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_send_op.hpp +86 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_sendto_op.hpp +81 -17
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +198 -91
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +319 -75
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_wait_op.hpp +49 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor.hpp +29 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +8 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +45 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/recycling_allocator.hpp +26 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/regex_fwd.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +35 -17
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_query_op.hpp +35 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service.hpp +24 -22
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service_base.hpp +37 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler.hpp +36 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_operation.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_task.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_thread_info.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_lock.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_interrupter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +59 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/service_registry.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_blocker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_handler.hpp +11 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_init.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_op.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_set_service.hpp +90 -15
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_holder.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_ops.hpp +71 -33
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_option.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_select_interrupter.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_types.hpp +12 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/source_location.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/static_mutex.hpp +3 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_event.hpp +13 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_fenced_block.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_global.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_mutex.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_static_mutex.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_thread.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_executor_service.hpp +36 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_service.hpp +8 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/string_view.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread.hpp +7 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_context.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_group.hpp +11 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +164 -25
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_error.hpp +18 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_exception.hpp +7 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timed_cancel_op.hpp +363 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +33 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +6 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_set.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler_fwd.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/type_traits.hpp +132 -40
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/utility.hpp +85 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_handler.hpp +13 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +6 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/winsock_init.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +85 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wrapped_handler.hpp +33 -129
- data/src/cxx_supportlib/vendor-modified/boost/asio/dispatch.hpp +136 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/error.hpp +30 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/allocator.hpp +280 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +1935 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bad_executor.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking.hpp +1362 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking_adaptation.hpp +1082 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context.hpp +193 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context_as.hpp +192 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/executor.hpp +118 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/bad_executor.ipp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/invocable_archetype.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/mapping.hpp +1004 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/occupancy.hpp +186 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/outstanding_work.hpp +755 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/prefer_only.hpp +330 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/relationship.hpp +753 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution_context.hpp +3 -26
- data/src/cxx_supportlib/vendor-modified/boost/asio/executor.hpp +66 -44
- data/src/cxx_supportlib/vendor-modified/boost/asio/executor_work_guard.hpp +239 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/append.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_single.hpp +134 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_tuple.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/awaitable_operators.hpp +538 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_channel.hpp +516 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_concurrent_channel.hpp +516 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/cancellation_condition.hpp +154 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_error.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_traits.hpp +303 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_composed.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_spawn.hpp +138 -177
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/concurrent_channel.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro.hpp +295 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro_traits.hpp +230 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/deferred.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_operation.hpp +363 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_receive_op.hpp +128 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_functions.hpp +202 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_op.hpp +149 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_service.hpp +681 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_completion_handler.hpp +171 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_promise_allocator.hpp +142 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/has_signature.hpp +56 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/impl/channel_service.hpp +625 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/partial_promise.hpp +199 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +183 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/channel_error.ipp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/coro.hpp +1224 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/parallel_group.hpp +790 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/promise.hpp +257 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_coro.hpp +216 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_promise.hpp +68 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/parallel_group.hpp +457 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/prepend.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/promise.hpp +226 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_coro.hpp +191 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_promise.hpp +113 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/file_base.hpp +168 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/basic_endpoint.hpp +2 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/datagram_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/impl/endpoint.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/raw_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/seq_packet_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/stream_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_continuation_hook.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/high_resolution_timer.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/immediate.hpp +144 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_completion_executor.ipp +128 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_io_executor.ipp +136 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/append.hpp +171 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/as_tuple.hpp +278 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/awaitable.hpp +1198 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +160 -185
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +154 -181
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/cancel_after.hpp +270 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/cancel_at.hpp +270 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/cancellation_signal.ipp +98 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +459 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +281 -438
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.ipp +151 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/consign.hpp +146 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/deferred.hpp +149 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/detached.hpp +79 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/error.ipp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.hpp +7 -37
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.hpp +72 -141
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.ipp +8 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.hpp +220 -132
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.ipp +5 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/multiple_exceptions.ipp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/prepend.hpp +172 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +529 -342
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +202 -280
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +1840 -672
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/redirect_error.hpp +289 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +1183 -318
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.hpp +15 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.ipp +26 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_executor.hpp +115 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.hpp +198 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.ipp +74 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_awaitable.hpp +303 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_future.hpp +186 -417
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +446 -340
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +171 -263
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +699 -70
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context_strand.hpp +87 -75
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_service_strand.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address.hpp +52 -31
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4.hpp +124 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_iterator.hpp +13 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_range.hpp +16 -22
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6.hpp +114 -43
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_iterator.hpp +13 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_range.hpp +15 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/bad_address_cast.hpp +19 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_endpoint.hpp +46 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver.hpp +337 -243
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_entry.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_iterator.hpp +4 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_query.hpp +17 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_results.hpp +12 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/endpoint.hpp +21 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/impl/endpoint.ipp +10 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/socket_option.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/host_name.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/icmp.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.ipp +23 -22
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.ipp +11 -15
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.ipp +28 -36
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/basic_endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/host_name.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.ipp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.ipp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/multicast.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v4.hpp +17 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v6.hpp +14 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_query_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/tcp.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/udp.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/unicast.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/v6_only.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_applicable_property.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_contiguous_iterator.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_read_buffered.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_write_buffered.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/basic_endpoint.hpp +10 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/connect_pair.hpp +14 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/datagram_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/endpoint.hpp +7 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +10 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/seq_packet_protocol.hpp +86 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/stream_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/multiple_exceptions.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/packaged_task.hpp +4 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/placeholders.hpp +35 -105
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +273 -82
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +283 -86
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor.hpp +5 -612
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor_base.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor.hpp +3 -326
- data/src/cxx_supportlib/vendor-modified/boost/asio/post.hpp +149 -43
- data/src/cxx_supportlib/vendor-modified/boost/asio/prefer.hpp +581 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/prepend.hpp +68 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/query.hpp +315 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/random_access_file.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +777 -177
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +231 -74
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +1849 -471
- data/src/cxx_supportlib/vendor-modified/boost/asio/readable_pipe.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/recycling_allocator.hpp +140 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/redirect_error.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/registered_buffer.hpp +346 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/require.hpp +437 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/require_concept.hpp +347 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port.hpp +3 -736
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set.hpp +3 -422
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set_base.hpp +173 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/socket_base.hpp +26 -26
- data/src/cxx_supportlib/vendor-modified/boost/asio/spawn.hpp +640 -105
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context.hpp +7 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context_base.hpp +38 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +7 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +7 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +65 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/openssl_init.ipp +9 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +75 -71
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_init.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_types.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/password_callback.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +7 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +17 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +89 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/verify_callback.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +12 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/error.hpp +21 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/host_name_verification.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +242 -79
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/error.ipp +29 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/host_name_verification.ipp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/rfc2818_verification.ipp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/src.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/rfc2818_verification.hpp +7 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +423 -142
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_mode.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/static_thread_pool.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/steady_timer.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/strand.hpp +311 -40
- data/src/cxx_supportlib/vendor-modified/boost/asio/stream_file.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/streambuf.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_context.hpp +18 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +570 -28
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_timer.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/this_coro.hpp +269 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +773 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/time_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/equality_comparable.hpp +102 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_member.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_free.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_member.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_free.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_member.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_static_constexpr_member.hpp +103 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_free.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_member.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_free.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_member.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_query.hpp +104 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require.hpp +117 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require_concept.hpp +118 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/buffer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/executor.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/internet.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/io_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/net.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/netfwd.hpp +82 -43
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/socket.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/unyield.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_awaitable.hpp +163 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_future.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/uses_executor.hpp +3 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/wait_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/writable_pipe.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +772 -173
- data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +237 -73
- data/src/cxx_supportlib/vendor-modified/boost/asio/yield.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +72 -28
- data/src/cxx_supportlib/vendor-modified/boost/assert/source_location.hpp +197 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic.hpp +170 -11
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_flag.hpp +12 -3
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_ref.hpp +97 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/capabilities.hpp +2 -191
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/addressof.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/aligned_variable.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_flag_impl.hpp +129 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_impl.hpp +1265 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_ref_impl.hpp +1228 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_cast.hpp +102 -12
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_fp_cast.hpp +43 -11
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/capabilities.hpp +217 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_aarch32.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_aarch64.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_alpha.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_arm.hpp +103 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_ppc.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_sparc.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_x86.hpp +74 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_msvc_arm.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_msvc_x86.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_atomic.hpp +100 -75
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_sync.hpp +0 -7
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/cas_based_exchange.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/classify.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +57 -64
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_operations.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_operations_fwd.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_aarch32.hpp +1121 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_aarch64.hpp +1909 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_alpha.hpp +867 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_arm.hpp +1417 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_ppc.hpp +1218 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_sparc.hpp +215 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_x86.hpp +1110 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_msvc_arm.hpp +828 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_msvc_x86.hpp +903 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_operations.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_operations_emulated.hpp +194 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_operations_emulated_fwd.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_operations_fwd.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_ops_cas_based.hpp +94 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_ops_gcc_atomic.hpp +306 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_ops_gcc_sync.hpp +263 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_ops_linux_arm.hpp +169 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extending_cas_based_arithmetic.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_fp_operations_fwd.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_fp_ops_emulated.hpp +22 -12
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_fp_ops_generic.hpp +13 -10
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_operations_fwd.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_emulated.hpp +59 -40
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_aarch32.hpp +1060 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_aarch64.hpp +1330 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_arm.hpp +363 -355
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_ppc.hpp +167 -163
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_x86.hpp +232 -102
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_generic.hpp +9 -17
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_msvc_arm.hpp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_msvc_x86.hpp +119 -92
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_operations.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_aarch32.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_aarch64.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_alpha.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_arm.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_ppc.hpp +68 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_sparc.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_x86.hpp +69 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_msvc_arm.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_msvc_x86.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_operations.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_operations_emulated.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_ops_gcc_atomic.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_ops_gcc_sync.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_ops_linux_arm.hpp +64 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/float_sizes.hpp +122 -35
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/footer.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fp_operations_fwd.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fp_ops_emulated.hpp +13 -8
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fp_ops_generic.hpp +6 -3
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/futex.hpp +185 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc_arm_asm_common.hpp +79 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc_atomic_memory_order_utils.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc_ppc_asm_common.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/header.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/int_sizes.hpp +25 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/integral_conversions.hpp +108 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/interlocked.hpp +35 -11
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/intptr.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/lock_pool.hpp +151 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/memory_order_utils.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/once_flag.hpp +43 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_aarch32_common.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_aarch64_common.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_arm_common.hpp +8 -79
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_ppc_common.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_msvc_common.hpp +7 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/pause.hpp +30 -5
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/platform.hpp +80 -34
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/storage_traits.hpp +187 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/alignment_of.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/has_unique_object_representations.hpp +143 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_enum.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_floating_point.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_nothrow_default_constructible.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_trivially_copyable.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/remove_cv.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_capabilities.hpp +363 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_darwin_ulock.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_dragonfly_umtx.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_freebsd_umtx.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_futex.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_on_address.hpp +64 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_operations.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_operations_fwd.hpp +43 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_darwin_ulock.hpp +158 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_dragonfly_umtx.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_emulated.hpp +96 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_freebsd_umtx.hpp +119 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_futex.hpp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_generic.hpp +143 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/fences.hpp +7 -18
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_flag.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_ref.hpp +97 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/apply.hpp +4 -49
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind.hpp +263 -1815
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/bind_cc.hpp +117 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/bind_mf2_cc.hpp +210 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/bind_mf_cc.hpp +405 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/integer_sequence.hpp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/result_traits.hpp +165 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/tuple_for_each.hpp +64 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn.hpp +143 -279
- data/src/cxx_supportlib/vendor-modified/boost/bind/placeholders.hpp +13 -14
- data/src/cxx_supportlib/vendor-modified/boost/bind/protect.hpp +24 -259
- data/src/cxx_supportlib/vendor-modified/boost/bind/std_placeholders.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/cerrno.hpp +4 -320
- data/src/cxx_supportlib/vendor-modified/boost/chrono/config.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/mac/chrono.hpp +14 -14
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/mac/process_cpu_clocks.hpp +34 -34
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/mac/thread_clock.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/posix/chrono.hpp +34 -14
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/posix/process_cpu_clocks.hpp +27 -27
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/posix/thread_clock.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/is_evenly_divisible_by.hpp +1 -7
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/requires_cxx11.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/scan_keyword.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/system.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/chrono/duration.hpp +10 -6
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_get.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_io.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_put.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_style.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_units.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_io.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/timezone.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/utility/ios_base_state_ptr.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io_v1/chrono_io.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/chrono/system_clocks.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/chrono/time_point.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/base.hpp +178 -167
- data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/details.hpp +39 -47
- data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/space_optimized.hpp +32 -38
- data/src/cxx_supportlib/vendor-modified/boost/circular_buffer.hpp +12 -9
- data/src/cxx_supportlib/vendor-modified/boost/concept/assert.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/concept/detail/general.hpp +24 -3
- data/src/cxx_supportlib/vendor-modified/boost/concept/detail/has_constraints.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/concept/usage.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/concept_check.hpp +20 -20
- data/src/cxx_supportlib/vendor-modified/boost/config/abi_prefix.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/abi_suffix.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx03.hpp +211 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx11.hpp +212 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx14.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx17.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx20.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx23.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx98.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/auto_link.hpp +78 -19
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/borland.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang.hpp +38 -4
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang_version.hpp +89 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/codegear.hpp +164 -10
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/comeau.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/common_edg.hpp +40 -11
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/cray.hpp +374 -52
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/digitalmars.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc.hpp +41 -11
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc_xml.hpp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/greenhills.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/hp_acc.hpp +7 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/intel.hpp +14 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/kai.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/metrowerks.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/mpw.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/nvcc.hpp +9 -3
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/pathscale.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/sunpro_cc.hpp +15 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/vacpp.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/visualc.hpp +54 -10
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp_zos.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/cxx_composite.hpp +218 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/select_compiler_config.hpp +1 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/select_platform_config.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/select_stdlib_config.hpp +13 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/suffix.hpp +303 -5
- data/src/cxx_supportlib/vendor-modified/boost/config/header_deprecated.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/bsd.hpp +5 -8
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/vxworks.hpp +63 -74
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/wasm.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/requires_threads.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +76 -10
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcomo.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +51 -4
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +144 -11
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/modena.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/msl.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/roguewave.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/sgi.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/stlport.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/vacpp.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/xlcpp_zos.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/user.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/workaround.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +291 -18
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +43 -35
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator_traits.hpp +205 -41
- data/src/cxx_supportlib/vendor-modified/boost/container/container_fwd.hpp +132 -38
- data/src/cxx_supportlib/vendor-modified/boost/container/deque.hpp +981 -361
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool.hpp +25 -22
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool_impl.hpp +838 -463
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/addressof.hpp +2 -10
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/advanced_insert_int.hpp +199 -133
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/algorithm.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/alloc_lib.h +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/allocation_type.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/allocator_version_traits.hpp +16 -16
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/block_list.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/block_slist.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/compare_functors.hpp +73 -13
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_begin.hpp +11 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_end.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/construct_in_place.hpp +52 -16
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/container_or_allocator_rebind.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/container_rebind.hpp +21 -116
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/copy_move_algo.hpp +991 -148
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/destroyers.hpp +181 -57
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/dispatch_uses_allocator.hpp +68 -68
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/flat_tree.hpp +443 -239
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/function_detector.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/guards_dended.hpp +198 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_container.hpp +18 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_contiguous_container.hpp +36 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_pair.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterator.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterators.hpp +228 -194
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/math_functions.hpp +55 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/mpl.hpp +60 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/multiallocation_chain.hpp +135 -40
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/mutex.hpp +48 -23
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/next_capacity.hpp +28 -9
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_alloc_holder.hpp +352 -152
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool_impl.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/pair.hpp +152 -105
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/placement_new.hpp +1 -7
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/pool_common.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/pool_common_alloc.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/pool_resource.hpp +7 -11
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/std_fwd.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/thread_mutex.hpp +181 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/transform_iterator.hpp +28 -28
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/tree.hpp +464 -351
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/type_traits.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/value_functors.hpp +9 -13
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/value_init.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/variadic_templates_tools.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/version_type.hpp +6 -15
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/workaround.hpp +138 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +3041 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_map.hpp +874 -314
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_set.hpp +391 -126
- data/src/cxx_supportlib/vendor-modified/boost/container/list.hpp +150 -120
- data/src/cxx_supportlib/vendor-modified/boost/container/map.hpp +634 -254
- data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +33 -13
- data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +30 -24
- data/src/cxx_supportlib/vendor-modified/boost/container/node_handle.hpp +35 -22
- data/src/cxx_supportlib/vendor-modified/boost/container/options.hpp +433 -7
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/devector.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/flat_set.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/global_resource.hpp +1 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/memory_resource.hpp +37 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/monotonic_buffer_resource.hpp +10 -7
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/polymorphic_allocator.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/resource_adaptor.hpp +92 -8
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/synchronized_pool_resource.hpp +7 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/unsynchronized_pool_resource.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/scoped_allocator.hpp +79 -81
- data/src/cxx_supportlib/vendor-modified/boost/container/set.hpp +445 -180
- data/src/cxx_supportlib/vendor-modified/boost/container/slist.hpp +142 -113
- data/src/cxx_supportlib/vendor-modified/boost/container/small_vector.hpp +325 -263
- data/src/cxx_supportlib/vendor-modified/boost/container/stable_vector.hpp +386 -228
- data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +243 -161
- data/src/cxx_supportlib/vendor-modified/boost/container/string.hpp +601 -455
- data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +155 -41
- data/src/cxx_supportlib/vendor-modified/boost/container/uses_allocator.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +977 -1017
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_integral.hpp +146 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_mix.hpp +113 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_range.hpp +408 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_tuple_like.hpp +62 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/mulx.hpp +79 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash.hpp +395 -580
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash_fwd.hpp +25 -24
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_contiguous_range.hpp +98 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_described_class.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_range.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_tuple_like.hpp +36 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_unordered_range.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/addressof.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/core/alignof.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/alloc_construct.hpp +95 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/allocator_access.hpp +834 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/allocator_traits.hpp +112 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/bit.hpp +954 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/checked_delete.hpp +35 -7
- data/src/cxx_supportlib/vendor-modified/boost/core/cmath.hpp +298 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/data.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/default_allocator.hpp +158 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/is_same.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/lwt_unattended.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/minstd_rand.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/sp_thread_pause.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/sp_thread_sleep.hpp +122 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/sp_thread_yield.hpp +100 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/splitmix64.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/string_view.hpp +1272 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/empty_value.hpp +203 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/exchange.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/explicit_operator_bool.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/fclose_deleter.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/first_scalar.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/functor.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/identity.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/ignore_unused.hpp +32 -2
- data/src/cxx_supportlib/vendor-modified/boost/core/invoke_swap.hpp +93 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/is_same.hpp +10 -15
- data/src/cxx_supportlib/vendor-modified/boost/core/launder.hpp +69 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test.hpp +269 -145
- data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test_trait.hpp +43 -8
- data/src/cxx_supportlib/vendor-modified/boost/core/make_span.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/max_align.hpp +82 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/memory_resource.hpp +108 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/no_exceptions_support.hpp +14 -2
- data/src/cxx_supportlib/vendor-modified/boost/core/noinit_adaptor.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp +16 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/null_deleter.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/nvp.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/pointer_in_range.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/pointer_traits.hpp +112 -60
- data/src/cxx_supportlib/vendor-modified/boost/core/quick_exit.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/ref.hpp +61 -17
- data/src/cxx_supportlib/vendor-modified/boost/core/serialization.hpp +131 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/size.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/snprintf.hpp +173 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/span.hpp +401 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/swap.hpp +12 -32
- data/src/cxx_supportlib/vendor-modified/boost/core/type_name.hpp +1186 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/typeinfo.hpp +26 -10
- data/src/cxx_supportlib/vendor-modified/boost/core/uncaught_exceptions.hpp +155 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/use_default.hpp +17 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/verbose_terminate_handler.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/yield_primitives.hpp +12 -0
- data/src/cxx_supportlib/vendor-modified/boost/cregex.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/cstdint.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/current_function.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/c_time.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/compiler_config.hpp +9 -41
- data/src/cxx_supportlib/vendor-modified/boost/date_time/constrained_value.hpp +19 -11
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date.hpp +24 -24
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_duration.hpp +17 -22
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_duration_types.hpp +44 -49
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_facet.hpp +5 -6
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_generators.hpp +24 -19
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_iterator.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_parsing.hpp +51 -25
- data/src/cxx_supportlib/vendor-modified/boost/date_time/dst_rules.hpp +56 -56
- data/src/cxx_supportlib/vendor-modified/boost/date_time/dst_transition_generators.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/find_match.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/format_date_parser.hpp +98 -98
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/formatters.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/formatters_limited.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_date.hpp +34 -27
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_day.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_duration.hpp +44 -32
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_duration_types.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_month.hpp +51 -23
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_serialize.hpp +29 -27
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_weekday.hpp +43 -9
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_year.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/parsers.hpp +34 -15
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.hpp +15 -17
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.ipp +30 -25
- data/src/cxx_supportlib/vendor-modified/boost/date_time/int_adapter.hpp +57 -37
- data/src/cxx_supportlib/vendor-modified/boost/date_time/iso_format.hpp +13 -13
- data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/local_date_time.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/local_time_io.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/period.hpp +44 -47
- data/src/cxx_supportlib/vendor-modified/boost/date_time/period_formatter.hpp +34 -31
- data/src/cxx_supportlib/vendor-modified/boost/date_time/period_parser.hpp +27 -28
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/conversion.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/date_duration_operators.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_config.hpp +13 -26
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_duration.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_io.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/ptime.hpp +22 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_formatters.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_formatters_limited.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_parsers.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_serialize.hpp +28 -12
- data/src/cxx_supportlib/vendor-modified/boost/date_time/special_values_formatter.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/special_values_parser.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/date_time/string_parse_tree.hpp +5 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/strings_from_facet.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time.hpp +24 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_duration.hpp +56 -44
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_facet.hpp +9 -12
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_iterator.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_parsing.hpp +5 -10
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_resolution_traits.hpp +18 -18
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_system_counted.hpp +65 -50
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_system_split.hpp +43 -30
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_zone_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_zone_names.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/tz_db_base.hpp +0 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/wrapping_int.hpp +16 -15
- data/src/cxx_supportlib/vendor-modified/boost/date_time/year_month_day.hpp +7 -5
- data/src/cxx_supportlib/vendor-modified/boost/describe/bases.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/describe/detail/config.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/describe/detail/cx_streq.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/describe/detail/void_t.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/describe/members.hpp +161 -0
- data/src/cxx_supportlib/vendor-modified/boost/describe/modifiers.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/detail/basic_pointerbuf.hpp +7 -11
- data/src/cxx_supportlib/vendor-modified/boost/detail/indirect_traits.hpp +38 -47
- data/src/cxx_supportlib/vendor-modified/boost/detail/lcast_precision.hpp +6 -97
- data/src/cxx_supportlib/vendor-modified/boost/detail/reference_content.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/detail/workaround.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/exception/current_exception_cast.hpp +10 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/clone_current_exception.hpp +10 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/error_info_impl.hpp +12 -7
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/exception_ptr.hpp +135 -34
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/is_output_streamable.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/object_hex_dump.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/requires_cxx11.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/shared_ptr.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/type_info.hpp +11 -5
- data/src/cxx_supportlib/vendor-modified/boost/exception/diagnostic_information.hpp +18 -9
- data/src/cxx_supportlib/vendor-modified/boost/exception/exception.hpp +118 -70
- data/src/cxx_supportlib/vendor-modified/boost/exception/get_error_info.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception/info.hpp +12 -10
- data/src/cxx_supportlib/vendor-modified/boost/exception/to_string.hpp +10 -5
- data/src/cxx_supportlib/vendor-modified/boost/exception/to_string_stub.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception_ptr.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/foreach.hpp +16 -9
- data/src/cxx_supportlib/vendor-modified/boost/function/function0.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function1.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function10.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function2.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function3.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function4.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function5.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function6.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function7.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function8.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function9.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function_base.hpp +77 -237
- data/src/cxx_supportlib/vendor-modified/boost/function/function_fwd.hpp +36 -41
- data/src/cxx_supportlib/vendor-modified/boost/function/function_template.hpp +456 -464
- data/src/cxx_supportlib/vendor-modified/boost/function/function_typeof.hpp +1 -31
- data/src/cxx_supportlib/vendor-modified/boost/function.hpp +5 -61
- data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor_ct.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor_rt.hpp +35 -33
- data/src/cxx_supportlib/vendor-modified/boost/integer/extended_euclidean.hpp +83 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/integer_log2.hpp +86 -81
- data/src/cxx_supportlib/vendor-modified/boost/integer/integer_mask.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/integer/mod_inverse.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/static_log2.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/integer/static_min_max.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/integer.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/integer_fwd.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/integer_traits.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/any_hook.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +99 -100
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +51 -52
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +83 -83
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +101 -102
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +155 -164
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +164 -158
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_list_algorithms.hpp +36 -28
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_slist_algorithms.hpp +88 -19
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/derivation_value_traits.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/algorithm.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +44 -44
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/array_initializer.hpp +10 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/avltree_node.hpp +23 -23
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +38 -40
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/common_slist_algorithms.hpp +85 -16
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/config_begin.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/default_header_holder.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/ebo_functor_holder.hpp +27 -27
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/empty_node_checker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/equal_to_value.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/exception_disposer.hpp +1 -32
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/generic_hook.hpp +14 -15
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash.hpp +277 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_combine.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_integral.hpp +119 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_mix.hpp +130 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +204 -115
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hook_traits.hpp +26 -22
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iiterator.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iterator.hpp +126 -80
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/key_nodeptr_comp.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_iterator.hpp +30 -18
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_node.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/math.hpp +11 -64
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/mpl.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_cloner_disposer.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_to_value.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/parent_from_member.hpp +6 -17
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/rbtree_node.hpp +24 -24
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/reverse_iterator.hpp +3 -140
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/simple_disposers.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/size_holder.hpp +14 -14
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_iterator.hpp +36 -17
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_node.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/transform_iterator.hpp +22 -22
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_iterator.hpp +38 -26
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_node.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_value_compare.hpp +45 -26
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/twin.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/value_functors.hpp +52 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/workaround.hpp +66 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +1763 -1039
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/intrusive_fwd.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +98 -18
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +113 -111
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list_hook.hpp +10 -10
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/member_value_traits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/options.hpp +26 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pack_options.hpp +21 -11
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/parent_from_member.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_plus_bits.hpp +7 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +31 -23
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/priority_compare.hpp +13 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +51 -52
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +74 -74
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +101 -102
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set_hook.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +109 -110
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +68 -77
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +81 -81
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +178 -186
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist_hook.hpp +8 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +107 -108
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +54 -55
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree_algorithms.hpp +99 -97
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +141 -115
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +88 -83
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +158 -152
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/trivial_value_traits.hpp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set.hpp +128 -114
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +17 -17
- data/src/cxx_supportlib/vendor-modified/boost/io/ios_state.hpp +361 -315
- data/src/cxx_supportlib/vendor-modified/boost/io_fwd.hpp +45 -49
- data/src/cxx_supportlib/vendor-modified/boost/iterator/advance.hpp +12 -1
- data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/config_def.hpp +10 -10
- data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/config_undef.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/enable_if.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/facade_iterator_category.hpp +13 -13
- data/src/cxx_supportlib/vendor-modified/boost/iterator/distance.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/iterator/is_iterator.hpp +148 -0
- data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_adaptor.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_concepts.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_facade.hpp +107 -26
- data/src/cxx_supportlib/vendor-modified/boost/iterator/transform_iterator.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/bad_lexical_cast.hpp +24 -25
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/buffer_view.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical.hpp +154 -172
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical_streams.hpp +619 -647
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +89 -77
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/inf_nan.hpp +35 -45
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/is_character.hpp +23 -29
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_basic_unlockedbuf.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_char_constants.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_unsigned_converters.hpp +33 -28
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/widest_char.hpp +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/try_lexical_convert.hpp +23 -157
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast.hpp +10 -13
- data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/chrono.cpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/process_cpu_clocks.cpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/thread_clock.cpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/libs/random/src/random_device.cpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/posix_api.cpp +20 -25
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/regex.cpp +13 -122
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/static_mutex.cpp +8 -2
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/wide_posix_api.cpp +24 -22
- data/src/cxx_supportlib/vendor-modified/boost/libs/system/src/error_code.cpp +16 -5
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/future.cpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/once.cpp +0 -1
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/once_atomic.cpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/thread.cpp +50 -29
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/tss_null.cpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/limits.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/memory_order.hpp +6 -12
- data/src/cxx_supportlib/vendor-modified/boost/move/adl_move_swap.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_merge.hpp +107 -62
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_sort.hpp +119 -86
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/adaptive_sort_merge.hpp +322 -489
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/basic_op.hpp +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/heap_sort.hpp +22 -11
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/insertion_sort.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge.hpp +463 -120
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge_sort.hpp +87 -10
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/pdqsort.hpp +16 -5
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/search.hpp +79 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/set_difference.hpp +9 -3
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/move.hpp +8 -5
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/predicate.hpp +24 -9
- data/src/cxx_supportlib/vendor-modified/boost/move/algorithm.hpp +0 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/core.hpp +32 -11
- data/src/cxx_supportlib/vendor-modified/boost/move/default_delete.hpp +32 -6
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/addressof.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/config_begin.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/force_ptr.hpp +36 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/fwd_macros.hpp +12 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_traits.hpp +109 -9
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/launder.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils.hpp +10 -32
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils_core.hpp +11 -6
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/move_helpers.hpp +24 -24
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/nsec_clock.hpp +268 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/reverse_iterator.hpp +40 -33
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/std_ns_begin.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/std_ns_end.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/to_raw_pointer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/type_traits.hpp +341 -70
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/unique_ptr_meta_utils.hpp +1 -27
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp +90 -3
- data/src/cxx_supportlib/vendor-modified/boost/move/iterator.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/move/make_unique.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/unique_ptr.hpp +65 -66
- data/src/cxx_supportlib/vendor-modified/boost/move/utility.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/move/utility_core.hpp +38 -33
- data/src/cxx_supportlib/vendor-modified/boost/mp11/algorithm.hpp +1386 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/bind.hpp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/config.hpp +149 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_append.hpp +321 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_copy_if.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_count.hpp +147 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_defer.hpp +119 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_fold.hpp +166 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_front.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_is_list.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_is_value_list.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_list.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_list_v.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_map_find.hpp +87 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_min_element.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_plus.hpp +84 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_remove_if.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_rename.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_value.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_void.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_with_index.hpp +385 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/function.hpp +222 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/integer_sequence.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/integral.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/list.hpp +481 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/set.hpp +188 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/utility.hpp +169 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/version.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/mpl/and.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/assert.hpp +31 -11
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/common_name_wknd.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/adl.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/arrays.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/bcc.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/bind.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/compiler.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/ctps.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/dtp.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/forwarding.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/integral.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/operators.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/overload_resolution.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/preprocessor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/ttp.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/count_impl.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/fold_impl_body.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/has_rebind.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/integral_wrapper.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/lambda_support.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/nested_type_wknd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/enum.hpp +12 -0
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/params.hpp +12 -0
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/size_impl.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/static_cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/template_arity.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/yes_no.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/bitand.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/bitor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/has_xxx.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/mpl/if.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/integral_c.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/lower_bound.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/numeric_cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/or.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/string.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/mpl/upper_bound.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/at.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/next_prior.hpp +3 -44
- data/src/cxx_supportlib/vendor-modified/boost/nondet_random.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/none.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/none_t.hpp +11 -1
- data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/converter_policies.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/converter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/int_float_mixture.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/meta.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/sign_mixture.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/udt_builtin_mixture.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/operators.hpp +33 -24
- data/src/cxx_supportlib/vendor-modified/boost/optional/bad_optional_access.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/experimental_traits.hpp +9 -3
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/old_optional_implementation.hpp +17 -17
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_aligned_storage.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_config.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_hash.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_reference_spec.hpp +30 -4
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_relops.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_swap.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_trivially_copyable_base.hpp +41 -30
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional.hpp +304 -128
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional_io.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/parameter/are_tagged_arguments.hpp +125 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/always_true_predicate.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/arg_list.hpp +1253 -359
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/as_lvalue.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/augment_predicate.hpp +198 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/cast.hpp +7 -136
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/default.hpp +101 -59
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/has_nested_template_fn.hpp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/is_maybe.hpp +42 -16
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/is_placeholder.hpp +64 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/is_tagged_argument.hpp +95 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/lambda_tag.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/maybe.hpp +128 -97
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/name.hpp +93 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/as_parameter_requirements.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/deduce_tag.hpp +217 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/deduced_item.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/insert_tagged.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/is_named_argument.hpp +43 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/item.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/make_arg_list.hpp +438 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/make_deduced_items.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/make_items.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/make_parameter_spec_items.hpp +244 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/parameter_requirements.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/predicate.hpp +87 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/satisfies.hpp +142 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_deduced.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_keyword_arg.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_keyword_arg_ref.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_template_keyword_arg.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_type.hpp +89 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/unmatched_argument.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/parameter_requirements.hpp +7 -20
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/parenthesized_type.hpp +8 -31
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pp_impl/argument_pack.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pp_impl/match.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pp_impl/unwrap_predicate.hpp +97 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/binary_seq_for_each.hpp +1638 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/binary_seq_for_each_inc.hpp +1796 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/binary_seq_to_args.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/convert_binary_seq.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/flatten.hpp +7 -110
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/for_each.hpp +7 -98
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/for_each_pred.hpp +1029 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/argument_specs.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/arity_range.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/flatten.hpp +143 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/for_each.hpp +152 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/forwarding_overloads.hpp +509 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_cast.hpp +730 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_dispatch_layer.hpp +474 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_dispatch_tuple.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_forward_match.hpp +43 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_name.hpp +152 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/no_spec_overloads.hpp +331 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/parenthesized_return_type.hpp +122 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/parenthesized_type.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/specification.hpp +109 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/split_args.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/inc_binary_seq.hpp +78 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/is_binary.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/is_nullary.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/no_perfect_forwarding_begin.hpp +165 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/no_perfect_forwarding_end.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/nullptr.hpp +18 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/overloads.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/qualifier.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/seq_enum.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/seq_merge.hpp +1807 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/result_of0.hpp +46 -29
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/set.hpp +94 -42
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/tag.hpp +156 -34
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/tagged_argument.hpp +874 -159
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/tagged_argument_fwd.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/template_keyword.hpp +76 -34
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/unwrap_cv_reference.hpp +161 -78
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/use_default.hpp +17 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/use_default_tag.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/void.hpp +26 -17
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/yesno.hpp +30 -14
- data/src/cxx_supportlib/vendor-modified/boost/parameter/binding.hpp +158 -74
- data/src/cxx_supportlib/vendor-modified/boost/parameter/compose.hpp +210 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/config.hpp +75 -6
- data/src/cxx_supportlib/vendor-modified/boost/parameter/deduced.hpp +132 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/is_argument_pack.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/keyword.hpp +724 -102
- data/src/cxx_supportlib/vendor-modified/boost/parameter/keyword_fwd.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/macros.hpp +205 -72
- data/src/cxx_supportlib/vendor-modified/boost/parameter/match.hpp +37 -44
- data/src/cxx_supportlib/vendor-modified/boost/parameter/name.hpp +100 -126
- data/src/cxx_supportlib/vendor-modified/boost/parameter/nested_keyword.hpp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/optional.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/parameters.hpp +556 -887
- data/src/cxx_supportlib/vendor-modified/boost/parameter/preprocessor.hpp +156 -1016
- data/src/cxx_supportlib/vendor-modified/boost/parameter/preprocessor_no_spec.hpp +74 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/python.hpp +5 -6
- data/src/cxx_supportlib/vendor-modified/boost/parameter/required.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/template_keyword.hpp +87 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/value_type.hpp +156 -74
- data/src/cxx_supportlib/vendor-modified/boost/pool/detail/mutex.hpp +119 -25
- data/src/cxx_supportlib/vendor-modified/boost/pool/object_pool.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/pool/pool.hpp +22 -9
- data/src/cxx_supportlib/vendor-modified/boost/pool/pool_alloc.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/pool/simple_segregated_storage.hpp +13 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/alpha.h +19 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/arm.h +97 -28
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/blackfin.h +16 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/convex.h +19 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/e2k.h +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/ia64.h +19 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/loongarch.h +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/m68k.h +33 -27
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/mips.h +31 -20
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/parisc.h +24 -18
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/ppc.h +82 -30
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/ptx.h +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/pyramid.h +13 -7
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/riscv.h +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/rs6k.h +23 -12
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sparc.h +26 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/superh.h +29 -15
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sys370.h +15 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sys390.h +15 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/x86/32.h +31 -25
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/x86/64.h +19 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/x86.h +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/z.h +14 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture.h +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/borland.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/clang.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/comeau.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/compaq.h +13 -12
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/diab.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/digitalmars.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/dignus.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/edg.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/ekopath.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/gcc.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/gcc_xml.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/greenhills.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/hp_acc.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/iar.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/ibm.h +15 -14
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/intel.h +18 -17
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/kai.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/llvm.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/metaware.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/metrowerks.h +14 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/microtec.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/mpw.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/nvcc.h +74 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/palm.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/pgi.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/sgi_mipspro.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/sunpro.h +14 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/tendra.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/visualc.h +13 -12
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/watcom.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler.h +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/arm/versions.h +16 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/arm.h +21 -19
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/ppc/versions.h +27 -21
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/ppc.h +21 -19
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86/versions.h +73 -67
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86.h +39 -37
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86_amd/versions.h +24 -19
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86_amd.h +25 -23
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd.h +95 -46
- data/src/cxx_supportlib/vendor-modified/boost/predef/language/cuda.h +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/language/objc.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/language/stdc.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/language/stdcpp.h +41 -34
- data/src/cxx_supportlib/vendor-modified/boost/predef/language.h +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/cloudabi.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/gnu.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/uc.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/vms.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/zos.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/cxx.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/dinkumware.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/libcomo.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/modena.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/msl.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/msvc.h +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/roguewave.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/sgi.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/stdcpp3.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/stlport.h +13 -12
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/vacpp.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std.h +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/make.h +107 -33
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/aix.h +14 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/amigaos.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/beos.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/bsdi.h +10 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/dragonfly.h +10 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/free.h +11 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/net.h +17 -15
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/open.h +60 -58
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd.h +22 -23
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/cygwin.h +15 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/haiku.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/hpux.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/ios.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/irix.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/linux.h +14 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/macos.h +14 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/os400.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/qnxnto.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/solaris.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/unix.h +24 -22
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/vms.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/windows.h +16 -15
- data/src/cxx_supportlib/vendor-modified/boost/predef/os.h +0 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/other/endian.h +19 -21
- data/src/cxx_supportlib/vendor-modified/boost/predef/other/wordsize.h +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/other/workaround.h +22 -14
- data/src/cxx_supportlib/vendor-modified/boost/predef/other.h +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/android.h +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/cloudabi.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/ios.h +14 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/mingw.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/mingw32.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/mingw64.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_desktop.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_phone.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_runtime.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_server.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_store.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_system.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_uwp.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform.h +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/version.h +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/version_number.h +16 -14
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/add.hpp +54 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/dec.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/detail/is_1_number.hpp +21 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/detail/is_maximum_number.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/detail/is_minimum_number.hpp +21 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/detail/maximum_number.hpp +19 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/div.hpp +37 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/inc.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/dec_1024.hpp +531 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/dec_256.hpp +276 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/dec_512.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/inc_1024.hpp +536 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/inc_256.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/inc_512.hpp +280 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/mod.hpp +37 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/mul.hpp +60 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/sub.hpp +51 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/detail/get_data.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/enum.hpp +17 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/insert.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/remove.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/replace.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_list.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_seq.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_tuple.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/comparison/limits/not_equal_1024.hpp +1044 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/comparison/limits/not_equal_256.hpp +793 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/comparison/limits/not_equal_512.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/comparison/not_equal.hpp +44 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/config/config.hpp +26 -34
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/config/limits.hpp +136 -3
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/deduce_d.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/dmc/while.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/edg/limits/while_1024.hpp +1044 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/edg/limits/while_256.hpp +533 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/edg/limits/while_512.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/edg/while.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/limits/while_1024.hpp +1044 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/limits/while_256.hpp +533 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/limits/while_512.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/while.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/limits/while_1024.hpp +531 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/limits/while_256.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/limits/while_512.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/while.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/auto_rec.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/dmc/auto_rec.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/limits/auto_rec_1024.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/limits/auto_rec_256.hpp +280 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/limits/auto_rec_512.hpp +276 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/check_empty.hpp +19 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/detail/is_empty.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/intercept.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/is_empty.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/is_empty_variadic.hpp +28 -5
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/limits/intercept_1024.hpp +530 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/limits/intercept_256.hpp +273 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/limits/intercept_512.hpp +274 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/overload.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/va_opt.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward1.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward2.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward3.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward4.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward5.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward1_1024.hpp +2573 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward1_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward1_512.hpp +1293 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward2_1024.hpp +2573 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward2_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward2_512.hpp +1293 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward3_1024.hpp +2573 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward3_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward3_512.hpp +1293 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward4_1024.hpp +2573 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward4_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward4_512.hpp +1293 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward5_1024.hpp +2573 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward5_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward5_512.hpp +1293 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse1_1024.hpp +2571 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse1_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse1_512.hpp +1291 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse2_1024.hpp +2571 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse2_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse2_512.hpp +1293 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse3_1024.hpp +2571 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse3_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse3_512.hpp +1293 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse4_1024.hpp +2571 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse4_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse4_512.hpp +1293 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse5_1024.hpp +2571 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse5_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse5_512.hpp +1293 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse1.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse2.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse3.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse4.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse5.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/local_1024.hpp +1549 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/local_256.hpp +782 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/local_512.hpp +781 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/rlocal_1024.hpp +1549 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/rlocal_256.hpp +782 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/rlocal_512.hpp +781 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/local.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/rlocal.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/dmc/fold_left.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/fold_left.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/fold_right.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_left_1024.hpp +1044 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_left_256.hpp +533 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_left_512.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_right_1024.hpp +1557 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_right_256.hpp +791 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_right_512.hpp +789 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/fold_left.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/fold_right.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_left_1024.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_left_256.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_left_512.hpp +276 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_right_1024.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_right_256.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_right_512.hpp +276 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/enum.hpp +13 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/fold_left.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/fold_right.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/for_each_product.hpp +25 -6
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/limits/fold_left_1024.hpp +531 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/limits/fold_left_256.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/limits/fold_left_512.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/reverse.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/size.hpp +56 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/to_array.hpp +21 -88
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/to_tuple.hpp +14 -14
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/logical/bool.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/logical/limits/bool_1024.hpp +531 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/logical/limits/bool_256.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/logical/limits/bool_512.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/punctuation/is_begin_parens.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/punctuation/remove_parens.hpp +0 -4
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/deduce_r.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/dmc/for.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/edg/for.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/edg/limits/for_1024.hpp +1044 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/edg/limits/for_256.hpp +533 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/edg/limits/for_512.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/for.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/limits/for_1024.hpp +1044 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/limits/for_256.hpp +533 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/limits/for_512.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/msvc/for.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/for.hpp +121 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/for_1024.hpp +531 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/for_256.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/for_512.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/repeat_1024.hpp +1557 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/repeat_256.hpp +791 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/repeat_512.hpp +789 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/repeat.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/repeat_from_to.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/binary_transform.hpp +6 -11
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/is_empty.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/limits/split_1024.hpp +530 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/limits/split_256.hpp +272 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/limits/split_512.hpp +274 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/split.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/elem.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/enum.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/fold_left.hpp +52 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/fold_right.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/for_each.hpp +27 -27
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/for_each_i.hpp +28 -28
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/elem_1024.hpp +530 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/elem_256.hpp +272 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/elem_512.hpp +274 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/enum_1024.hpp +530 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/enum_256.hpp +272 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/enum_512.hpp +274 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_left_1024.hpp +1556 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_left_256.hpp +1053 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_left_512.hpp +788 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_right_1024.hpp +530 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_right_256.hpp +273 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_right_512.hpp +274 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/size_1024.hpp +1043 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/size_256.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/size_512.hpp +531 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/replace.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/rest_n.hpp +16 -10
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/size.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/variadic_seq_to_seq.hpp +0 -2
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/stringize.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/detail/is_single_return.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/eat.hpp +4 -18
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/elem.hpp +11 -157
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/insert.hpp +2 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/reverse_128.hpp +403 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/reverse_256.hpp +1171 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/reverse_64.hpp +83 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_list_128.hpp +595 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_list_256.hpp +1747 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_list_64.hpp +83 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_seq_128.hpp +403 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_seq_256.hpp +1171 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_seq_64.hpp +84 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/pop_back.hpp +16 -21
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/pop_front.hpp +16 -21
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/push_back.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/push_front.hpp +1 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/rem.hpp +21 -43
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/remove.hpp +16 -21
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/replace.hpp +2 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/reverse.hpp +38 -25
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/size.hpp +13 -6
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/to_array.hpp +15 -12
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/to_list.hpp +37 -25
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/to_seq.hpp +38 -24
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/detail/has_opt.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/detail/is_single_return.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/elem.hpp +93 -71
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/has_opt.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/elem_128.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/elem_256.hpp +723 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/elem_64.hpp +81 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/size_128.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/size_256.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/size_64.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/size.hpp +39 -4
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/to_array.hpp +15 -9
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/to_list.hpp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/to_seq.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/to_tuple.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/wstringize.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/random/additive_combine.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/gray_coded_qrng.hpp +190 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/int_float_pair.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/integer_log2.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/mixmax_skip_N17.ipp +287 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/niederreiter_base2_table.hpp +514 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/operators.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/qrng_base.hpp +291 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/seed.hpp +9 -11
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/seed_impl.hpp +13 -14
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/sobol_table.hpp +4107 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/discard_block.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/random/discrete_distribution.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/faure.hpp +367 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/generate_canonical.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/random/hyperexponential_distribution.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/random/independent_bits.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/random/inversive_congruential.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/random/lagged_fibonacci.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/random/linear_congruential.hpp +5 -7
- data/src/cxx_supportlib/vendor-modified/boost/random/linear_feedback_shift.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/random/mersenne_twister.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/random/mixmax.hpp +313 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/niederreiter_base2.hpp +360 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/random_device.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/random/shuffle_order.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/random/sobol.hpp +238 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/splitmix64.hpp +203 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/subtract_with_carry.hpp +18 -18
- data/src/cxx_supportlib/vendor-modified/boost/random/traits.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_int_distribution.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_real_distribution.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_smallint.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/random/xor_combine.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/random.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/range/as_literal.hpp +43 -6
- data/src/cxx_supportlib/vendor-modified/boost/range/begin.hpp +17 -15
- data/src/cxx_supportlib/vendor-modified/boost/range/concepts.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/range/config.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/range/detail/common.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/range/detail/implementation_help.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/range/distance.hpp +11 -5
- data/src/cxx_supportlib/vendor-modified/boost/range/end.hpp +18 -16
- data/src/cxx_supportlib/vendor-modified/boost/range/has_range_iterator.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/range/iterator_range_core.hpp +0 -32
- data/src/cxx_supportlib/vendor-modified/boost/range/rbegin.hpp +0 -13
- data/src/cxx_supportlib/vendor-modified/boost/range/rend.hpp +0 -13
- data/src/cxx_supportlib/vendor-modified/boost/range/size.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/ratio/config.hpp +4 -78
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/gcd_lcm.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/is_evenly_divisible_by.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/is_ratio.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/include.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/ratio/ratio.hpp +5 -249
- data/src/cxx_supportlib/vendor-modified/boost/ratio/ratio_fwd.hpp +30 -56
- data/src/cxx_supportlib/vendor-modified/boost/ratio/ratio_io.hpp +0 -533
- data/src/cxx_supportlib/vendor-modified/boost/rational.hpp +95 -51
- data/src/cxx_supportlib/vendor-modified/boost/regex/concepts.hpp +82 -76
- data/src/cxx_supportlib/vendor-modified/boost/regex/config/borland.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/config.hpp +104 -101
- data/src/cxx_supportlib/vendor-modified/boost/regex/pattern_except.hpp +4 -72
- data/src/cxx_supportlib/vendor-modified/boost/regex/pending/object_cache.hpp +4 -140
- data/src/cxx_supportlib/vendor-modified/boost/regex/pending/unicode_iterator.hpp +8 -761
- data/src/cxx_supportlib/vendor-modified/boost/regex/regex_traits.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/user.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex.hpp +32 -16
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_creator.hpp +50 -25
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_parser.hpp +64 -30
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/c_regex_traits.hpp +342 -42
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/cpp_regex_traits.hpp +111 -28
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/cregex.hpp +0 -117
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/icu.hpp +1516 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/indexed_bit_flag.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/match_flags.hpp +18 -7
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/match_results.hpp +21 -12
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/mem_block_cache.hpp +39 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/object_cache.hpp +171 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/pattern_except.hpp +128 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher.hpp +42 -18
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_common.hpp +24 -10
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_non_recursive.hpp +57 -54
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_recursive.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/primary_transform.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/protected_call.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex.hpp +0 -36
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_format.hpp +10 -8
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_iterator.hpp +2 -8
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_raw_buffer.hpp +38 -7
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_split.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_token_iterator.hpp +9 -15
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_traits_defaults.hpp +653 -36
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_workaround.hpp +7 -4
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/states.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/sub_match.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/u32regex_iterator.hpp +1 -9
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/u32regex_token_iterator.hpp +3 -11
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/unicode_iterator.hpp +871 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/w32_regex_traits.hpp +526 -40
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex.hpp +734 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_creator.hpp +1576 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_parser.hpp +3130 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/c_regex_traits.hpp +474 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/char_regex_traits.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/cpp_regex_traits.hpp +1040 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/cregex.hpp +195 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/error_type.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/icu.hpp +1402 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/iterator_category.hpp +84 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/iterator_traits.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/match_flags.hpp +156 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/match_results.hpp +667 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/mem_block_cache.hpp +173 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/object_cache.hpp +160 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/pattern_except.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/perl_matcher.hpp +576 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/perl_matcher_common.hpp +921 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/perl_matcher_non_recursive.hpp +1874 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/primary_transform.hpp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regbase.hpp +158 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_format.hpp +1124 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_fwd.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_grep.hpp +98 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_iterator.hpp +173 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_match.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_merge.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_raw_buffer.hpp +213 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_replace.hpp +77 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_search.hpp +103 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_split.hpp +152 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_token_iterator.hpp +255 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_traits.hpp +130 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_traits_defaults.hpp +996 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_workaround.hpp +159 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/states.hpp +299 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/sub_match.hpp +382 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/syntax_type.hpp +105 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/u32regex_iterator.hpp +177 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/u32regex_token_iterator.hpp +312 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/unicode_iterator.hpp +862 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/w32_regex_traits.hpp +1311 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex_fwd.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/allocate_shared_array.hpp +94 -444
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/bad_weak_ptr.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_gcc.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_gcc_atomic.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_gcc_x86.hpp +11 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_nt.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_pt.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_spin.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_std_atomic.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_sync.hpp +13 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/local_counted_base.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/local_sp_deleter.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/requires_cxx11.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +88 -48
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_convertible.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base.hpp +12 -16
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp +15 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_aix.hpp +12 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp +17 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_atomic.hpp +148 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp +15 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp +15 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp +15 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp +15 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp +15 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_nt.hpp +27 -17
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_pt.hpp +18 -9
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp +16 -5
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_spin.hpp +12 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp +27 -18
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_sync.hpp +12 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp +15 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +48 -31
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_has_sync_intrinsics.hpp +69 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_typeinfo_.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock.hpp +7 -9
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_gcc_arm.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp +94 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_nt.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_pt.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_std_atomic.hpp +13 -5
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_sync.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/yield_k.hpp +13 -141
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/enable_shared_from_this.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ptr.hpp +49 -12
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_array.hpp +23 -22
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_object.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_unique.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_array.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_ptr.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_array.hpp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +120 -40
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/weak_ptr.hpp +80 -8
- data/src/cxx_supportlib/vendor-modified/boost/static_assert.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/system/config.hpp +4 -24
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/append_int.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/cerrno.hpp +329 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/config.hpp +83 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/enable_if.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/errc.hpp +126 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category.hpp +183 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category_impl.hpp +166 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.hpp +659 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_condition.hpp +326 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/generic_category.hpp +123 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/generic_category_message.hpp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/interop_category.hpp +107 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/mutex.hpp +128 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/snprintf.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/std_category.hpp +84 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/std_category_impl.hpp +97 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_impl.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_message.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/throws.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/errc.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/error_category.hpp +13 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/error_code.hpp +12 -760
- data/src/cxx_supportlib/vendor-modified/boost/system/error_condition.hpp +13 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/generic_category.hpp +13 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/is_error_code_enum.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/is_error_condition_enum.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/system_category.hpp +14 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/system_error.hpp +30 -59
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/deque_adaptor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/deque_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/detail/sync_deque_base.hpp +9 -21
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/detail/sync_queue_base.hpp +9 -21
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_adaptor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_op_status.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_bounded_queue.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_deque.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_priority_queue.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_queue.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_timed_queue.hpp +80 -14
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/deque.hpp +1 -24
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/functional.hpp +1 -14
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/list.hpp +1 -14
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/allocator_arg.hpp +2 -12
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/allocator_traits.hpp +0 -11
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/config.hpp +0 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/default_delete.hpp +0 -16
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/pointer_traits.hpp +0 -11
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/scoped_allocator.hpp +0 -11
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/shared_ptr.hpp +0 -19
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/unique_ptr.hpp +4 -6
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/queue.hpp +1 -24
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/tuple.hpp +1 -18
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/vector.hpp +1 -14
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/config.hpp +18 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/invoke.hpp +27 -21
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/move.hpp +13 -6
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/nullary_function.hpp +8 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/platform_time.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/string_to_unsigned.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/string_trim.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/thread.hpp +33 -12
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/thread_safety.hpp +160 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/tss_hooks.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/exceptions.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/basic_thread_pool.hpp +27 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/executor.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/executor_adaptor.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/generic_executor_ref.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/inline_executor.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/loop_executor.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/scheduled_thread_pool.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/scheduler.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/scheduling_adaptor.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/serial_executor.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/serial_executor_cont.hpp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/thread_executor.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/work.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/experimental/parallel/v2/task_region.hpp +6 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/externally_locked.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/thread/future.hpp +12 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/futures/wait_for_any.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/interruption.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/lock_guard.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/lockable_traits.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/poly_lockable.hpp +7 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/poly_shared_lockable.hpp +16 -12
- data/src/cxx_supportlib/vendor-modified/boost/thread/poly_shared_lockable_adapter.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/condition_variable.hpp +20 -26
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/condition_variable_fwd.hpp +8 -15
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/mutex.hpp +17 -88
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/once.hpp +29 -28
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/once_atomic.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/pthread_helpers.hpp +163 -18
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/pthread_mutex_scoped_lock.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/recursive_mutex.hpp +25 -25
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/shared_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/thread_data.hpp +21 -13
- data/src/cxx_supportlib/vendor-modified/boost/thread/scoped_thread.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/synchronized_value.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/thread_guard.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/tss.hpp +23 -41
- data/src/cxx_supportlib/vendor-modified/boost/thread/user_scheduler.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/v2/shared_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/xtime.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/throw_exception.hpp +232 -56
- data/src/cxx_supportlib/vendor-modified/boost/token_functions.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/tuple/detail/tuple_basic.hpp +35 -30
- data/src/cxx_supportlib/vendor-modified/boost/tuple/tuple.hpp +52 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/add_pointer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/aligned_storage.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/alignment_of.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/conjunction.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/copy_cv_ref.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/copy_reference.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/common_arithmetic_type.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/config.hpp +36 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/detector.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/has_binary_operator.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/has_postfix_operator.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/has_prefix_operator.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_cxx_03.hpp +108 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_cxx_11.hpp +676 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_msvc10_fix.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_ptr_helper.hpp +27 -27
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_ptr_tester.hpp +415 -255
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_likely_lambda.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp +27 -27
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp +1345 -1542
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp +117 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp +697 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_rvalue_reference_msvc10_fix.hpp +43 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_swappable_cxx_11.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detected.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detected_or.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/disjunction.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/enable_if.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/extent.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_dereference.hpp +344 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_minus.hpp +11 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_minus_assign.hpp +11 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_nothrow_copy.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_plus_assign.hpp +11 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_post_decrement.hpp +21 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_post_increment.hpp +21 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_pre_decrement.hpp +21 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_pre_increment.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_move_assign.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_move_constructor.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/integral_constant.hpp +6 -16
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/integral_promotion.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/intrinsics.hpp +39 -15
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_array.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_base_and_derived.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_bounded_array.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_complete.hpp +6 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_const.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_constructible.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_convertible.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_copy_assignable.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_copy_constructible.hpp +4 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_default_constructible.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_destructible.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_detected.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_detected_convertible.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_detected_exact.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_empty.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_enum.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_final.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_floating_point.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_function.hpp +4 -79
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_fundamental.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_integral.hpp +6 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_lvalue_reference.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_member_function_pointer.hpp +3 -97
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_member_pointer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_noncopyable.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_nothrow_move_assignable.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_nothrow_move_constructible.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_nothrow_swappable.hpp +4 -24
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_pointer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_rvalue_reference.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_same.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_scoped_enum.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_signed.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_swappable.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_trivially_copyable.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_unbounded_array.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_unscoped_enum.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_unsigned.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_virtual_base_of.hpp +105 -64
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_volatile.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/make_void.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/negation.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/nonesuch.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/rank.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_all_extents.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_const.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_cv.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_extent.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_volatile.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/type_with_alignment.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/typeof/constant.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/typeof/decltype.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/typeof/incr_registration_group.hpp +1 -10
- data/src/cxx_supportlib/vendor-modified/boost/typeof/msvc/typeof_impl.hpp +9 -10
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/bitset.hpp +2 -4
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/complex.hpp +2 -4
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/deque.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/fstream.hpp +2 -15
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/functional.hpp +4 -51
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/iostream.hpp +2 -6
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/istream.hpp +2 -9
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/iterator.hpp +2 -46
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/list.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/locale.hpp +2 -29
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/map.hpp +2 -9
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/memory.hpp +4 -9
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/ostream.hpp +2 -6
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/queue.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/set.hpp +2 -9
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/sstream.hpp +2 -19
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/stack.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/streambuf.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/string.hpp +2 -12
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/utility.hpp +2 -4
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/valarray.hpp +2 -10
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/vector.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/typeof/typeof.hpp +8 -202
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_map.hpp +872 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_map_fwd.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_set.hpp +728 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_set_fwd.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/allocator_constructed.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/archive_constructed.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/bad_archive_exception.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/concurrent_static_asserts.hpp +105 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fca.hpp +900 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/concurrent_table.hpp +1792 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/core.hpp +2380 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/cumulative_stats.hpp +177 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/element_type.hpp +64 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/flat_map_types.hpp +86 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/flat_set_types.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/ignore_wshadow.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_handle.hpp +204 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_map_types.hpp +139 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_set_types.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/reentrancy_check.hpp +138 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/restore_wshadow.hpp +11 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/rw_spinlock.hpp +179 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/table.hpp +661 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/tuple_rotate_right.hpp +52 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/implementation.hpp +1462 -3502
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/map.hpp +10 -14
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/mulx.hpp +129 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/narrow_cast.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/opt_storage.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/prime_fmod.hpp +214 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/serialization_version.hpp +74 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/serialize_container.hpp +204 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/serialize_fca_container.hpp +156 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/serialize_tracked_address.hpp +104 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/set.hpp +8 -13
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/static_assert.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/throw_exception.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/type_traits.hpp +226 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/xmx.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/hash_traits.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_map.hpp +812 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_map_fwd.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_set.hpp +622 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_set_fwd.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map.hpp +768 -1002
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map_fwd.hpp +35 -13
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_map.hpp +907 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_map_fwd.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_set.hpp +711 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_set_fwd.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set.hpp +547 -672
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set_fwd.hpp +35 -15
- data/src/cxx_supportlib/vendor-modified/boost/utility/base_from_member.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/utility/binary.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/utility/detail/minstd_rand.hpp +4 -43
- data/src/cxx_supportlib/vendor-modified/boost/utility/detail/result_of_iterate.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/utility/detail/result_of_variadic.hpp +190 -0
- data/src/cxx_supportlib/vendor-modified/boost/utility/in_place_factory.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/utility/result_of.hpp +33 -11
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_ref.hpp +11 -44
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_view.hpp +56 -52
- data/src/cxx_supportlib/vendor-modified/boost/utility/swap.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/utility/typed_in_place_factory.hpp +6 -1
- data/src/cxx_supportlib/vendor-modified/boost/utility/value_init.hpp +41 -75
- data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/jsoncpp/jsoncpp.cpp +2 -9
- data/src/cxx_supportlib/vendor-modified/modp_b64_data.h +0 -4
- data/src/cxx_supportlib/vendor-modified/modp_b64_strict_aliasing.cpp +7 -3
- data/src/cxx_supportlib/vendor-modified/websocketpp/changelog.md +444 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/readme.md +49 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/close.hpp +353 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/asio.hpp +141 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/functional.hpp +100 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/md5.hpp +448 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/memory.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/thread.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/core.hpp +297 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/connection.hpp +1642 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/endpoint.hpp +700 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/extensions/permessage_deflate/disabled.hpp +129 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/extensions/permessage_deflate/enabled.hpp +817 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/frame.hpp +853 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/http/impl/parser.hpp +200 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/http/parser.hpp +629 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/impl/connection_impl.hpp +2375 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/impl/endpoint_impl.hpp +269 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/processors/base.hpp +299 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/processors/hybi13.hpp +1072 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/roles/client_endpoint.hpp +173 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/roles/server_endpoint.hpp +195 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/sha1/sha1.hpp +189 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/connection.hpp +1197 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/endpoint.hpp +1182 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/security/none.hpp +372 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/security/tls.hpp +474 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/base/endpoint.hpp +77 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/debug/connection.hpp +412 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/debug/endpoint.hpp +140 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/iostream/connection.hpp +714 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/iostream/endpoint.hpp +222 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/stub/connection.hpp +286 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/uri.hpp +356 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/utilities.hpp +180 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/version.hpp +61 -0
- data/src/helper-scripts/backtrace-sanitizer.rb +2 -2
- data/src/helper-scripts/crash-watch.rb +1 -1
- data/src/helper-scripts/download_binaries/extconf.rb +2 -2
- data/src/helper-scripts/meteor-loader.rb +9 -4
- data/src/helper-scripts/node-loader.js +3 -3
- data/src/helper-scripts/prespawn +3 -2
- data/src/helper-scripts/rack-loader.rb +2 -2
- data/src/helper-scripts/rack-preloader.rb +2 -2
- data/src/helper-scripts/wsgi-loader.py +36 -19
- data/src/nginx_module/ConfigGeneral/AutoGeneratedDefinitions.c +98 -2
- data/src/nginx_module/ConfigGeneral/AutoGeneratedDefinitions.c.cxxcodebuilder +2 -2
- data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c +59 -2
- data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c.cxxcodebuilder +2 -2
- data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c +122 -2
- data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c.cxxcodebuilder +2 -2
- data/src/nginx_module/ConfigGeneral/ManifestGeneration.c +2 -2
- data/src/nginx_module/Configuration.c +40 -11
- data/src/nginx_module/Configuration.h +1 -1
- data/src/nginx_module/ContentHandler.c +306 -24
- data/src/nginx_module/ContentHandler.h +6 -1
- data/src/nginx_module/LocationConfig/AutoGeneratedCreateFunction.c +49 -2
- data/src/nginx_module/LocationConfig/AutoGeneratedCreateFunction.c.cxxcodebuilder +2 -2
- data/src/nginx_module/LocationConfig/AutoGeneratedHeaderSerialization.c +86 -2
- data/src/nginx_module/LocationConfig/AutoGeneratedHeaderSerialization.c.cxxcodebuilder +2 -2
- data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c +111 -2
- data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c.cxxcodebuilder +2 -2
- data/src/nginx_module/LocationConfig/AutoGeneratedMergeFunction.c +23 -2
- data/src/nginx_module/LocationConfig/AutoGeneratedMergeFunction.c.cxxcodebuilder +2 -2
- data/src/nginx_module/LocationConfig/AutoGeneratedStruct.h +36 -2
- data/src/nginx_module/LocationConfig/AutoGeneratedStruct.h.cxxcodebuilder +2 -2
- data/src/nginx_module/MainConfig/AutoGeneratedCreateFunction.c +18 -2
- data/src/nginx_module/MainConfig/AutoGeneratedCreateFunction.c.cxxcodebuilder +2 -2
- data/src/nginx_module/MainConfig/AutoGeneratedManifestGeneration.c +36 -2
- data/src/nginx_module/MainConfig/AutoGeneratedManifestGeneration.c.cxxcodebuilder +2 -2
- data/src/nginx_module/MainConfig/AutoGeneratedStruct.h +14 -2
- data/src/nginx_module/MainConfig/AutoGeneratedStruct.h.cxxcodebuilder +2 -2
- data/src/nginx_module/StaticContentHandler.c +1 -1
- data/src/nginx_module/StaticContentHandler.h +1 -1
- data/src/nginx_module/config +2 -0
- data/src/nginx_module/ngx_http_passenger_module.c +7 -4
- data/src/nginx_module/ngx_http_passenger_module.h +6 -1
- data/src/nodejs_supportlib/phusion_passenger/line_reader.js +2 -2
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/common.js +50 -29
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/config/cli-config.js +20 -20
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/config/npm-config.js +11 -11
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/config/syslog-config.js +3 -3
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/config.js +8 -2
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/container.js +2 -1
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/logger.js +174 -146
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/console.js +4 -2
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/file.js +15 -5
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/http.js +14 -4
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports.js +26 -24
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston.js +5 -5
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/async/package.json +4 -13
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/colors/package.json +19 -33
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/cycle/package.json +11 -29
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/eyes/package.json +12 -40
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/isstream/package.json +3 -12
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/stack-trace/lib/stack-trace.js +49 -24
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/stack-trace/package.json +4 -16
- data/src/nodejs_supportlib/vendor-copy/winston/package.json +11 -55
- data/src/ruby_native_extension/extconf.rb +9 -2
- data/src/ruby_native_extension/passenger_native_support.c +3 -2
- data/src/ruby_supportlib/phusion_passenger/abstract_installer.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/admin_tools/instance.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/admin_tools/instance_registry.rb +15 -3
- data/src/ruby_supportlib/phusion_passenger/admin_tools/memory_stats.rb +3 -3
- data/src/ruby_supportlib/phusion_passenger/admin_tools.rb +3 -3
- data/src/ruby_supportlib/phusion_passenger/apache2/config_options.rb +55 -2
- data/src/ruby_supportlib/phusion_passenger/apache2/config_utils.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/common_library.rb +19 -6
- data/src/ruby_supportlib/phusion_passenger/config/about_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/agent_compiler.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/api_call_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/build_native_support_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/compile_agent_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/compile_nginx_engine_command.rb +8 -4
- data/src/ruby_supportlib/phusion_passenger/config/detach_process_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/download_agent_command.rb +3 -3
- data/src/ruby_supportlib/phusion_passenger/config/download_nginx_engine_command.rb +3 -3
- data/src/ruby_supportlib/phusion_passenger/config/install_agent_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/install_standalone_runtime_command.rb +12 -2
- data/src/ruby_supportlib/phusion_passenger/config/installation_utils.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/list_instances_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/main.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/nginx_engine_compiler.rb +16 -7
- data/src/ruby_supportlib/phusion_passenger/config/reopen_logs_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/restart_app_command.rb +18 -14
- data/src/ruby_supportlib/phusion_passenger/config/system_metrics_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/system_properties_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/utils.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/validate_install_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/console_text_template.rb +9 -4
- data/src/ruby_supportlib/phusion_passenger/constants.rb +6 -4
- data/src/ruby_supportlib/phusion_passenger/debug_logging.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/loader_shared_helpers.rb +39 -12
- data/src/ruby_supportlib/phusion_passenger/message_channel.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/message_client.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/native_support.rb +12 -7
- data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +84 -2
- data/src/ruby_supportlib/phusion_passenger/packaging.rb +5 -3
- data/src/ruby_supportlib/phusion_passenger/platform_info/apache.rb +12 -15
- data/src/ruby_supportlib/phusion_passenger/platform_info/apache_detector.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/platform_info/binary_compatibility.rb +25 -21
- data/src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb +49 -8
- data/src/ruby_supportlib/phusion_passenger/platform_info/crypto.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/platform_info/curl.rb +5 -2
- data/src/ruby_supportlib/phusion_passenger/platform_info/cxx_portability.rb +10 -4
- data/src/ruby_supportlib/phusion_passenger/platform_info/depcheck_specs/gems.rb +10 -0
- data/src/ruby_supportlib/phusion_passenger/platform_info/depcheck_specs/libs.rb +10 -6
- data/src/ruby_supportlib/phusion_passenger/platform_info/linux.rb +4 -3
- data/src/ruby_supportlib/phusion_passenger/platform_info/networking.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/platform_info/openssl.rb +7 -2
- data/src/ruby_supportlib/phusion_passenger/platform_info/operating_system.rb +49 -30
- data/src/ruby_supportlib/phusion_passenger/platform_info/pcre.rb +64 -0
- data/src/ruby_supportlib/phusion_passenger/platform_info/ruby.rb +4 -4
- data/src/ruby_supportlib/phusion_passenger/platform_info/zlib.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/platform_info.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/plugin.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/preloader_shared_helpers.rb +14 -8
- data/src/ruby_supportlib/phusion_passenger/public_api.rb +5 -2
- data/src/ruby_supportlib/phusion_passenger/rack/handler.rb +73 -0
- data/src/ruby_supportlib/phusion_passenger/rack/out_of_band_gc.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/rack/thread_handler_extension.rb +24 -3
- data/src/ruby_supportlib/phusion_passenger/rack_handler.rb +32 -58
- data/src/ruby_supportlib/phusion_passenger/request_handler/thread_handler.rb +25 -20
- data/src/ruby_supportlib/phusion_passenger/request_handler.rb +13 -9
- data/src/ruby_supportlib/phusion_passenger/ruby_core_enhancements.rb +7 -2
- data/src/ruby_supportlib/phusion_passenger/ruby_core_io_enhancements.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/simple_benchmarking.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/standalone/app_finder.rb +3 -2
- data/src/ruby_supportlib/phusion_passenger/standalone/command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/standalone/config_options_list.rb +53 -3
- data/src/ruby_supportlib/phusion_passenger/standalone/config_utils.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/standalone/control_utils.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/standalone/main.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command/builtin_engine.rb +13 -5
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command/nginx_engine.rb +32 -21
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command.rb +3 -7
- data/src/ruby_supportlib/phusion_passenger/standalone/status_command.rb +3 -4
- data/src/ruby_supportlib/phusion_passenger/standalone/stop_command.rb +9 -3
- data/src/ruby_supportlib/phusion_passenger/standalone/version_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/utils/ansi_colors.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/utils/download.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/utils/file_system_watcher.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/utils/hosts_file_parser.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/utils/json.rb +7 -198
- data/src/ruby_supportlib/phusion_passenger/utils/lock.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/utils/native_support_utils.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/utils/progress_bar.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/utils/strscan.rb +67 -0
- data/src/ruby_supportlib/phusion_passenger/utils/tee_input.rb +6 -0
- data/src/ruby_supportlib/phusion_passenger/utils/terminal_choice_menu.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/utils/unseekable_socket.rb +17 -13
- data/src/ruby_supportlib/phusion_passenger/utils.rb +8 -17
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/app.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/base.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/gdb_controller.rb +5 -1
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/lldb_controller.rb +6 -2
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/utils.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/version.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/vendor/daemon_controller/lock_file.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/vendor/daemon_controller/spawn.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/vendor/daemon_controller/version.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/vendor/daemon_controller.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger.rb +12 -11
- data/src/schema_printer/SchemaPrinterMain.cpp +2 -2
- data/src/schema_printer/SchemaPrinterMain.cpp.cxxcodebuilder +2 -2
- metadata +935 -308
- data/src/cxx_supportlib/ServerKit/http_parser.cpp +0 -2265
- data/src/cxx_supportlib/ServerKit/http_parser.h +0 -330
- data/src/cxx_supportlib/vendor-copy/websocketpp/changelog.md +0 -342
- data/src/cxx_supportlib/vendor-copy/websocketpp/readme.md +0 -49
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/close.hpp +0 -342
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/asio.hpp +0 -131
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/functional.hpp +0 -105
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/md5.hpp +0 -448
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/memory.hpp +0 -89
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/thread.hpp +0 -84
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/core.hpp +0 -285
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/connection.hpp +0 -1651
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/endpoint.hpp +0 -700
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/extensions/permessage_deflate/disabled.hpp +0 -128
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/extensions/permessage_deflate/enabled.hpp +0 -752
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/frame.hpp +0 -861
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/impl/parser.hpp +0 -196
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/parser.hpp +0 -619
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/impl/connection_impl.hpp +0 -2372
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/impl/endpoint_impl.hpp +0 -269
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/base.hpp +0 -299
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/hybi13.hpp +0 -1056
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/roles/client_endpoint.hpp +0 -173
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/roles/server_endpoint.hpp +0 -190
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/sha1/sha1.hpp +0 -189
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/connection.hpp +0 -1204
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/endpoint.hpp +0 -1147
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/security/none.hpp +0 -370
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/security/tls.hpp +0 -484
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/base/endpoint.hpp +0 -77
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/debug/connection.hpp +0 -412
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/debug/endpoint.hpp +0 -140
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/iostream/connection.hpp +0 -714
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/iostream/endpoint.hpp +0 -222
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/stub/connection.hpp +0 -286
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/uri.hpp +0 -355
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/utilities.hpp +0 -182
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/version.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/array.hpp +0 -457
- data/src/cxx_supportlib/vendor-modified/boost/asio/datagram_socket_service.hpp +0 -468
- data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer_service.hpp +0 -175
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_arm_fenced_block.hpp +0 -93
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_hppa_fenced_block.hpp +0 -70
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_sync_fenced_block.hpp +0 -67
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_x86_fenced_block.hpp +0 -101
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_invoke_helpers.hpp +0 -57
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_serial_port_service.ipp +0 -154
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/macos_fenced_block.hpp +0 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/old_win_sdk_compat.hpp +0 -216
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_serial_port_service.hpp +0 -238
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_fwd.hpp +0 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/solaris_fenced_block.hpp +0 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/variadic_templates.hpp +0 -119
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detached.hpp +0 -67
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/co_spawn.hpp +0 -878
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/detached.hpp +0 -93
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/redirect_error.hpp +0 -296
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/redirect_error.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental.hpp +0 -22
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_alloc_hook.hpp +0 -83
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_invoke_hook.hpp +0 -87
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_type.hpp +0 -52
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/defer.hpp +0 -79
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/dispatch.hpp +0 -80
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +0 -54
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/post.hpp +0 -79
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.cpp +0 -25
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_service.hpp +0 -202
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor_service.hpp +0 -281
- data/src/cxx_supportlib/vendor-modified/boost/asio/raw_socket_service.hpp +0 -468
- data/src/cxx_supportlib/vendor-modified/boost/asio/seq_packet_socket_service.hpp +0 -418
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_service.hpp +0 -251
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set_service.hpp +0 -144
- data/src/cxx_supportlib/vendor-modified/boost/asio/socket_acceptor_service.hpp +0 -374
- data/src/cxx_supportlib/vendor-modified/boost/asio/stream_socket_service.hpp +0 -414
- data/src/cxx_supportlib/vendor-modified/boost/asio/waitable_timer_service.hpp +0 -212
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_handle.hpp +0 -275
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_object_handle.hpp +0 -184
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +0 -378
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +0 -361
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle.hpp +0 -383
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle_service.hpp +0 -185
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_handle.hpp +0 -333
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_ptr.hpp +0 -118
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle.hpp +0 -380
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle_service.hpp +0 -216
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle.hpp +0 -364
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle_service.hpp +0 -212
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_flag.hpp +0 -71
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_template.hpp +0 -1248
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_alpha.hpp +0 -34
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_arm.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_ppc.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_sparc.hpp +0 -34
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_x86.hpp +0 -40
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_msvc_arm.hpp +0 -34
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_msvc_x86.hpp +0 -55
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/hwcaps_gcc_arm.hpp +0 -67
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/hwcaps_gcc_ppc.hpp +0 -42
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/hwcaps_gcc_x86.hpp +0 -58
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/integral_extend.hpp +0 -105
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/lockpool.hpp +0 -51
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/operations.hpp +0 -24
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/operations_fwd.hpp +0 -35
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/operations_lockfree.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_cas_based.hpp +0 -107
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_emulated.hpp +0 -162
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_extending_cas_based.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_alpha.hpp +0 -876
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_arm.hpp +0 -1397
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_atomic.hpp +0 -392
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_ppc.hpp +0 -1232
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_sparc.hpp +0 -240
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_sync.hpp +0 -240
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_x86.hpp +0 -563
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_x86_dcas.hpp +0 -555
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_linux_arm.hpp +0 -180
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_msvc_arm.hpp +0 -824
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_msvc_x86.hpp +0 -908
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/storage_type.hpp +0 -207
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind_cc.hpp +0 -117
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind_mf2_cc.hpp +0 -228
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind_mf_cc.hpp +0 -441
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind_template.hpp +0 -345
- data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn_cc.hpp +0 -103
- data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn_template.hpp +0 -1047
- data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn_vw.hpp +0 -130
- data/src/cxx_supportlib/vendor-modified/boost/bind/storage.hpp +0 -475
- data/src/cxx_supportlib/vendor-modified/boost/bind.hpp +0 -41
- data/src/cxx_supportlib/vendor-modified/boost/call_traits.hpp +0 -20
- data/src/cxx_supportlib/vendor-modified/boost/checked_delete.hpp +0 -17
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/cygwin.hpp +0 -68
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/float_functions.hpp +0 -336
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_float.hpp +0 -271
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/limits.hpp +0 -62
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/extensions.hpp +0 -414
- data/src/cxx_supportlib/vendor-modified/boost/detail/atomic_count.hpp +0 -21
- data/src/cxx_supportlib/vendor-modified/boost/detail/call_traits.hpp +0 -172
- data/src/cxx_supportlib/vendor-modified/boost/detail/container_fwd.hpp +0 -157
- data/src/cxx_supportlib/vendor-modified/boost/detail/endian.hpp +0 -11
- data/src/cxx_supportlib/vendor-modified/boost/detail/iterator.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/detail/no_exceptions_support.hpp +0 -17
- data/src/cxx_supportlib/vendor-modified/boost/detail/sp_typeinfo.hpp +0 -36
- data/src/cxx_supportlib/vendor-modified/boost/function/detail/function_iterate.hpp +0 -16
- data/src/cxx_supportlib/vendor-modified/boost/function/detail/gen_maybe_include.pl +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/function/detail/maybe_include.hpp +0 -369
- data/src/cxx_supportlib/vendor-modified/boost/function/detail/prologue.hpp +0 -26
- data/src/cxx_supportlib/vendor-modified/boost/function/gen_function_N.pl +0 -26
- data/src/cxx_supportlib/vendor-modified/boost/functional/hash_fwd.hpp +0 -6
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/c_regex_traits.cpp +0 -206
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/cpp_regex_traits.cpp +0 -117
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/cregex.cpp +0 -660
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/instances.cpp +0 -32
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/regex_raw_buffer.cpp +0 -72
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/regex_traits_defaults.cpp +0 -692
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/wc_regex_traits.cpp +0 -314
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/winstances.cpp +0 -35
- data/src/cxx_supportlib/vendor-modified/boost/math/policies/policy.hpp +0 -1040
- data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/detail/fp_traits.hpp +0 -581
- data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/detail/round_fwd.hpp +0 -93
- data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/fpclassify.hpp +0 -640
- data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/math_fwd.hpp +0 -1651
- data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/sign.hpp +0 -194
- data/src/cxx_supportlib/vendor-modified/boost/math/tools/config.hpp +0 -469
- data/src/cxx_supportlib/vendor-modified/boost/math/tools/promotion.hpp +0 -182
- data/src/cxx_supportlib/vendor-modified/boost/math/tools/real_cast.hpp +0 -31
- data/src/cxx_supportlib/vendor-modified/boost/math/tools/user.hpp +0 -105
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/overloads.hpp +0 -88
- data/src/cxx_supportlib/vendor-modified/boost/pointer_to_other.hpp +0 -55
- data/src/cxx_supportlib/vendor-modified/boost/predef/detail/endian_compat.h +0 -26
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/android.h +0 -45
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/abs.hpp +0 -89
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/gcd.hpp +0 -124
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/lcm.hpp +0 -126
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/sign.hpp +0 -89
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/overflow_helpers.hpp +0 -367
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/ratio_io.hpp +0 -1342
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/abs.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/arithmetic.hpp +0 -22
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/comparison.hpp +0 -19
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/divides.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/equal_to.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/gcd.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/greater.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/greater_equal.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/lcm.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/less.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/less_equal.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/minus.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/negate.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/not_equal_to.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/numeric_cast.hpp +0 -31
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/plus.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/rational_c_tag.hpp +0 -25
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/rational_constant.hpp +0 -15
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/sign.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/times.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/fileiter.hpp +0 -455
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/instances.hpp +0 -225
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_solaris.hpp +0 -59
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_clang.hpp +0 -150
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_cw_x86.hpp +0 -160
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_solaris.hpp +0 -115
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_has_sync.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/swap.hpp +0 -17
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.ipp +0 -496
- data/src/cxx_supportlib/vendor-modified/boost/type_index/stl_type_index.hpp +0 -276
- data/src/cxx_supportlib/vendor-modified/boost/type_index/type_index_facade.hpp +0 -297
- data/src/cxx_supportlib/vendor-modified/boost/type_index.hpp +0 -265
- data/src/cxx_supportlib/vendor-modified/boost/typeof/dmc/typeof_impl.hpp +0 -100
- data/src/cxx_supportlib/vendor-modified/boost/typeof/encode_decode.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/typeof/encode_decode_params.hpp +0 -34
- data/src/cxx_supportlib/vendor-modified/boost/typeof/int_encoding.hpp +0 -118
- data/src/cxx_supportlib/vendor-modified/boost/typeof/integral_template_param.hpp +0 -80
- data/src/cxx_supportlib/vendor-modified/boost/typeof/message.hpp +0 -8
- data/src/cxx_supportlib/vendor-modified/boost/typeof/modifiers.hpp +0 -121
- data/src/cxx_supportlib/vendor-modified/boost/typeof/native.hpp +0 -60
- data/src/cxx_supportlib/vendor-modified/boost/typeof/pointers_data_members.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/boost/typeof/register_functions.hpp +0 -50
- data/src/cxx_supportlib/vendor-modified/boost/typeof/register_functions_iterate.hpp +0 -135
- data/src/cxx_supportlib/vendor-modified/boost/typeof/register_fundamental.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/typeof/register_mem_functions.hpp +0 -32
- data/src/cxx_supportlib/vendor-modified/boost/typeof/template_encoding.hpp +0 -160
- data/src/cxx_supportlib/vendor-modified/boost/typeof/template_template_param.hpp +0 -149
- data/src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp +0 -27
- data/src/cxx_supportlib/vendor-modified/boost/typeof/type_template_param.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/typeof/typeof_impl.hpp +0 -186
- data/src/cxx_supportlib/vendor-modified/boost/typeof/unsupported.hpp +0 -29
- data/src/cxx_supportlib/vendor-modified/boost/typeof/vector.hpp +0 -166
- data/src/cxx_supportlib/vendor-modified/boost/typeof/vector100.hpp +0 -321
- data/src/cxx_supportlib/vendor-modified/boost/typeof/vector150.hpp +0 -471
- data/src/cxx_supportlib/vendor-modified/boost/typeof/vector200.hpp +0 -621
- data/src/cxx_supportlib/vendor-modified/boost/typeof/vector50.hpp +0 -171
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fwd.hpp +0 -63
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/daily-rotate-file.js +0 -601
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/webhook.js +0 -146
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/pkginfo/LICENSE +0 -19
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/pkginfo/lib/pkginfo.js +0 -136
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/pkginfo/package.json +0 -56
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/COPYING +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/base64/base64.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/client.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/asio_ssl.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/chrono.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/connection_hdl.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/cpp11.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/network.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/platforms.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/random.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/regex.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/stdint.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/system_error.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/time.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/type_traits.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/concurrency/basic.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/concurrency/none.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/asio.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/asio_client.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/asio_no_tls.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/asio_no_tls_client.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/boost_config.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/core_client.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/debug.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/debug_asio.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/debug_asio_no_tls.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/minimal_client.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/minimal_server.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/connection_base.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/endpoint_base.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/error.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/extensions/extension.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/http/constants.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/http/impl/request.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/http/impl/response.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/http/request.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/http/response.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/impl/utilities_impl.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/logger/basic.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/logger/levels.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/logger/stub.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/logger/syslog.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/message_buffer/alloc.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/message_buffer/message.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/message_buffer/pool.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/processors/hybi00.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/processors/hybi07.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/processors/hybi08.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/processors/processor.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/random/none.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/random/random_device.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/server.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/asio/base.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/asio/security/base.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/base/connection.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/debug/base.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/iostream/base.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/stub/base.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/stub/endpoint.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/utf8_validator.hpp +0 -0
@@ -31,6 +31,7 @@
|
|
31
31
|
#include <boost/container/detail/mpl.hpp>
|
32
32
|
#include <boost/container/detail/algorithm.hpp> //equal()
|
33
33
|
#include <boost/container/detail/container_or_allocator_rebind.hpp>
|
34
|
+
#include <boost/container/detail/pair.hpp>
|
34
35
|
// move
|
35
36
|
#include <boost/move/utility_core.hpp>
|
36
37
|
#include <boost/move/traits.hpp>
|
@@ -39,16 +40,27 @@
|
|
39
40
|
#include <boost/move/detail/fwd_macros.hpp>
|
40
41
|
#endif
|
41
42
|
#include <boost/move/detail/move_helpers.hpp>
|
43
|
+
#include <boost/move/detail/force_ptr.hpp>
|
42
44
|
// intrusive
|
43
45
|
#include <boost/intrusive/detail/minimal_pair_header.hpp> //pair
|
44
46
|
#include <boost/intrusive/detail/minimal_less_equal_header.hpp>//less, equal
|
45
|
-
|
46
|
-
#include <boost/core/no_exceptions_support.hpp>
|
47
|
+
|
47
48
|
|
48
49
|
#if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
|
49
50
|
#include <initializer_list>
|
50
51
|
#endif
|
51
52
|
|
53
|
+
#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
|
54
|
+
#define BOOST_CONTAINER_STD_PAIR_IS_MOVABLE
|
55
|
+
#endif
|
56
|
+
|
57
|
+
//for C++03 compilers, were type-puning is the only option for std::pair
|
58
|
+
//disable strict aliasing to reduce problems.
|
59
|
+
#if defined(BOOST_GCC) && (BOOST_GCC >= 100000) && !defined(BOOST_CONTAINER_STD_PAIR_IS_MOVABLE)
|
60
|
+
#pragma GCC push_options
|
61
|
+
#pragma GCC optimize("no-strict-aliasing")
|
62
|
+
#endif
|
63
|
+
|
52
64
|
namespace boost {
|
53
65
|
namespace container {
|
54
66
|
|
@@ -59,17 +71,37 @@ class flat_multimap;
|
|
59
71
|
|
60
72
|
namespace dtl{
|
61
73
|
|
74
|
+
#if defined(BOOST_CONTAINER_STD_PAIR_IS_MOVABLE)
|
62
75
|
template<class D, class S>
|
63
76
|
BOOST_CONTAINER_FORCEINLINE static D &force(S &s)
|
64
|
-
{ return
|
77
|
+
{ return s; }
|
78
|
+
|
79
|
+
template<class D, class S>
|
80
|
+
BOOST_CONTAINER_FORCEINLINE static const D &force(const S &s)
|
81
|
+
{ return s; }
|
82
|
+
|
83
|
+
template<class D>
|
84
|
+
BOOST_CONTAINER_FORCEINLINE static D force_copy(D s)
|
85
|
+
{ return s; }
|
86
|
+
|
87
|
+
#else //!BOOST_CONTAINER_DOXYGEN_INVOKED
|
88
|
+
|
89
|
+
template<class D, class S>
|
90
|
+
BOOST_CONTAINER_FORCEINLINE static D &force(S &s)
|
91
|
+
{ return *move_detail::launder_cast<D*>(&s); }
|
92
|
+
|
93
|
+
template<class D, class S>
|
94
|
+
BOOST_CONTAINER_FORCEINLINE static const D &force(const S &s)
|
95
|
+
{ return *move_detail::launder_cast<const D*>(&s); }
|
65
96
|
|
66
97
|
template<class D, class S>
|
67
98
|
BOOST_CONTAINER_FORCEINLINE static D force_copy(const S &s)
|
68
99
|
{
|
69
|
-
const D *const vp =
|
100
|
+
const D *const vp = move_detail::launder_cast<const D *>(&s);
|
70
101
|
D ret_val(*vp);
|
71
102
|
return ret_val;
|
72
103
|
}
|
104
|
+
#endif //BOOST_CONTAINER_DOXYGEN_INVOKED
|
73
105
|
|
74
106
|
} //namespace dtl{
|
75
107
|
|
@@ -103,7 +135,7 @@ BOOST_CONTAINER_FORCEINLINE static D force_copy(const S &s)
|
|
103
135
|
//! - The allocator to allocate <code>value_type</code>s (e.g. <i>allocator< std::pair<Key, T> > </i>).
|
104
136
|
//! (in this case <i>sequence_type</i> will be vector<value_type, AllocatorOrContainer>)
|
105
137
|
//! - The SequenceContainer to be used as the underlying <i>sequence_type</i>. It must be a vector-like
|
106
|
-
//! sequence container with random-access iterators
|
138
|
+
//! sequence container with random-access iterators.
|
107
139
|
#ifdef BOOST_CONTAINER_DOXYGEN_INVOKED
|
108
140
|
template <class Key, class T, class Compare = std::less<Key>, class AllocatorOrContainer = new_allocator< std::pair< Key, T> > >
|
109
141
|
#else
|
@@ -115,18 +147,27 @@ class flat_map
|
|
115
147
|
private:
|
116
148
|
BOOST_COPYABLE_AND_MOVABLE(flat_map)
|
117
149
|
//This is the tree that we should store if pair was movable
|
150
|
+
typedef std::pair<Key, T> std_pair_t;
|
118
151
|
typedef dtl::flat_tree<
|
119
|
-
|
152
|
+
std_pair_t,
|
120
153
|
dtl::select1st<Key>,
|
121
154
|
Compare,
|
122
155
|
AllocatorOrContainer> tree_t;
|
123
156
|
|
124
157
|
//This is the real tree stored here. It's based on a movable pair
|
158
|
+
typedef dtl::pair<Key, T> dtl_pair_t;
|
159
|
+
|
160
|
+
#ifdef BOOST_CONTAINER_STD_PAIR_IS_MOVABLE
|
161
|
+
typedef std_pair_t impl_pair_t;
|
162
|
+
#else
|
163
|
+
typedef dtl_pair_t impl_pair_t;
|
164
|
+
#endif
|
165
|
+
|
125
166
|
typedef dtl::flat_tree<
|
126
|
-
|
167
|
+
impl_pair_t,
|
127
168
|
dtl::select1st<Key>,
|
128
169
|
Compare,
|
129
|
-
typename dtl::container_or_allocator_rebind<AllocatorOrContainer,
|
170
|
+
typename dtl::container_or_allocator_rebind<AllocatorOrContainer, impl_pair_t >::type
|
130
171
|
> impl_tree_t;
|
131
172
|
impl_tree_t m_flat_tree; // flat tree representing flat_map
|
132
173
|
|
@@ -151,10 +192,10 @@ class flat_map
|
|
151
192
|
typedef typename impl_tree_t::stored_allocator_type impl_stored_allocator_type;
|
152
193
|
typedef typename impl_tree_t::sequence_type impl_sequence_type;
|
153
194
|
|
154
|
-
|
195
|
+
inline impl_tree_t &tree()
|
155
196
|
{ return m_flat_tree; }
|
156
197
|
|
157
|
-
|
198
|
+
inline const impl_tree_t &tree() const
|
158
199
|
{ return m_flat_tree; }
|
159
200
|
|
160
201
|
private:
|
@@ -195,7 +236,7 @@ class flat_map
|
|
195
236
|
typedef BOOST_CONTAINER_IMPDEF(impl_value_type) movable_value_type;
|
196
237
|
|
197
238
|
//AllocatorOrContainer::value_type must be std::pair<Key, T>
|
198
|
-
|
239
|
+
BOOST_CONTAINER_STATIC_ASSERT((dtl::is_same<std::pair<Key, T>, value_type>::value));
|
199
240
|
|
200
241
|
//////////////////////////////////////////////
|
201
242
|
//
|
@@ -206,7 +247,7 @@ class flat_map
|
|
206
247
|
//! <b>Effects</b>: Default constructs an empty flat_map.
|
207
248
|
//!
|
208
249
|
//! <b>Complexity</b>: Constant.
|
209
|
-
|
250
|
+
inline flat_map() BOOST_NOEXCEPT_IF(dtl::is_nothrow_default_constructible<AllocatorOrContainer>::value &&
|
210
251
|
dtl::is_nothrow_default_constructible<Compare>::value)
|
211
252
|
: m_flat_tree()
|
212
253
|
{}
|
@@ -214,7 +255,7 @@ class flat_map
|
|
214
255
|
//! <b>Effects</b>: Constructs an empty flat_map using the specified allocator.
|
215
256
|
//!
|
216
257
|
//! <b>Complexity</b>: Constant.
|
217
|
-
|
258
|
+
inline explicit flat_map(const allocator_type& a)
|
218
259
|
: m_flat_tree(dtl::force<const impl_allocator_type>(a))
|
219
260
|
{}
|
220
261
|
|
@@ -222,7 +263,7 @@ class flat_map
|
|
222
263
|
//! comparison object.
|
223
264
|
//!
|
224
265
|
//! <b>Complexity</b>: Constant.
|
225
|
-
|
266
|
+
inline explicit flat_map(const Compare& comp)
|
226
267
|
: m_flat_tree(comp)
|
227
268
|
{}
|
228
269
|
|
@@ -230,7 +271,7 @@ class flat_map
|
|
230
271
|
//! comparison object and allocator.
|
231
272
|
//!
|
232
273
|
//! <b>Complexity</b>: Constant.
|
233
|
-
|
274
|
+
inline flat_map(const Compare& comp, const allocator_type& a)
|
234
275
|
: m_flat_tree(comp, dtl::force<const impl_allocator_type>(a))
|
235
276
|
{}
|
236
277
|
|
@@ -240,7 +281,7 @@ class flat_map
|
|
240
281
|
//! <b>Complexity</b>: Linear in N if the range [first ,last ) is already sorted using
|
241
282
|
//! the predicate and otherwise N logN, where N is last - first.
|
242
283
|
template <class InputIterator>
|
243
|
-
|
284
|
+
inline flat_map(InputIterator first, InputIterator last)
|
244
285
|
: m_flat_tree(true, first, last)
|
245
286
|
{}
|
246
287
|
|
@@ -250,7 +291,7 @@ class flat_map
|
|
250
291
|
//! <b>Complexity</b>: Linear in N if the range [first ,last ) is already sorted using
|
251
292
|
//! the predicate and otherwise N logN, where N is last - first.
|
252
293
|
template <class InputIterator>
|
253
|
-
|
294
|
+
inline flat_map(InputIterator first, InputIterator last, const allocator_type& a)
|
254
295
|
: m_flat_tree(true, first, last, dtl::force<const impl_allocator_type>(a))
|
255
296
|
{}
|
256
297
|
|
@@ -260,7 +301,7 @@ class flat_map
|
|
260
301
|
//! <b>Complexity</b>: Linear in N if the range [first ,last ) is already sorted using
|
261
302
|
//! the predicate and otherwise N logN, where N is last - first.
|
262
303
|
template <class InputIterator>
|
263
|
-
|
304
|
+
inline flat_map(InputIterator first, InputIterator last, const Compare& comp)
|
264
305
|
: m_flat_tree(true, first, last, comp)
|
265
306
|
{}
|
266
307
|
|
@@ -270,7 +311,7 @@ class flat_map
|
|
270
311
|
//! <b>Complexity</b>: Linear in N if the range [first ,last ) is already sorted using
|
271
312
|
//! the predicate and otherwise N logN, where N is last - first.
|
272
313
|
template <class InputIterator>
|
273
|
-
|
314
|
+
inline flat_map(InputIterator first, InputIterator last, const Compare& comp, const allocator_type& a)
|
274
315
|
: m_flat_tree(true, first, last, comp, dtl::force<const impl_allocator_type>(a))
|
275
316
|
{}
|
276
317
|
|
@@ -284,7 +325,7 @@ class flat_map
|
|
284
325
|
//!
|
285
326
|
//! <b>Note</b>: Non-standard extension.
|
286
327
|
template <class InputIterator>
|
287
|
-
|
328
|
+
inline
|
288
329
|
flat_map(ordered_unique_range_t, InputIterator first, InputIterator last)
|
289
330
|
: m_flat_tree(ordered_range, first, last)
|
290
331
|
{}
|
@@ -299,7 +340,7 @@ class flat_map
|
|
299
340
|
//!
|
300
341
|
//! <b>Note</b>: Non-standard extension.
|
301
342
|
template <class InputIterator>
|
302
|
-
|
343
|
+
inline
|
303
344
|
flat_map(ordered_unique_range_t, InputIterator first, InputIterator last, const Compare& comp)
|
304
345
|
: m_flat_tree(ordered_range, first, last, comp)
|
305
346
|
{}
|
@@ -314,18 +355,33 @@ class flat_map
|
|
314
355
|
//!
|
315
356
|
//! <b>Note</b>: Non-standard extension.
|
316
357
|
template <class InputIterator>
|
317
|
-
|
358
|
+
inline
|
318
359
|
flat_map(ordered_unique_range_t, InputIterator first, InputIterator last, const Compare& comp, const allocator_type& a)
|
319
360
|
: m_flat_tree(ordered_range, first, last, comp, dtl::force<const impl_allocator_type>(a))
|
320
361
|
{}
|
321
362
|
|
363
|
+
//! <b>Effects</b>: Constructs an empty flat_map using the specified allocator and
|
364
|
+
//! inserts elements from the ordered range [first ,last). This function
|
365
|
+
//! is more efficient than the normal range creation for ordered ranges.
|
366
|
+
//!
|
367
|
+
//! <b>Requires</b>: [first ,last) must be ordered according to the predicate.
|
368
|
+
//!
|
369
|
+
//! <b>Complexity</b>: Linear in N.
|
370
|
+
//!
|
371
|
+
//! <b>Note</b>: Non-standard extension.
|
372
|
+
template <class InputIterator>
|
373
|
+
inline
|
374
|
+
flat_map(ordered_unique_range_t, InputIterator first, InputIterator last, const allocator_type& a)
|
375
|
+
: m_flat_tree(ordered_range, first, last, Compare(), a)
|
376
|
+
{}
|
377
|
+
|
322
378
|
#if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
|
323
379
|
//! <b>Effects</b>: Constructs an empty flat_map and
|
324
380
|
//! inserts elements from the range [il.begin() ,il.end()).
|
325
381
|
//!
|
326
382
|
//! <b>Complexity</b>: Linear in N if the range [il.begin(), il.end()) is already sorted using
|
327
383
|
//! the predicate and otherwise N logN, where N is last - first.
|
328
|
-
|
384
|
+
inline flat_map(std::initializer_list<value_type> il)
|
329
385
|
: m_flat_tree( true
|
330
386
|
, dtl::force<impl_initializer_list>(il).begin()
|
331
387
|
, dtl::force<impl_initializer_list>(il).end())
|
@@ -336,7 +392,7 @@ class flat_map
|
|
336
392
|
//!
|
337
393
|
//! <b>Complexity</b>: Linear in N if the range [il.begin(), il.end()) is already sorted using
|
338
394
|
//! the predicate and otherwise N logN, where N is last - first.
|
339
|
-
|
395
|
+
inline flat_map(std::initializer_list<value_type> il, const allocator_type& a)
|
340
396
|
: m_flat_tree( true
|
341
397
|
, dtl::force<impl_initializer_list>(il).begin()
|
342
398
|
, dtl::force<impl_initializer_list>(il).end()
|
@@ -348,7 +404,7 @@ class flat_map
|
|
348
404
|
//!
|
349
405
|
//! <b>Complexity</b>: Linear in N if the range [il.begin(), il.end()) is already sorted using
|
350
406
|
//! the predicate and otherwise N logN, where N is last - first.
|
351
|
-
|
407
|
+
inline flat_map(std::initializer_list<value_type> il, const Compare& comp)
|
352
408
|
: m_flat_tree(true
|
353
409
|
, dtl::force<impl_initializer_list>(il).begin()
|
354
410
|
, dtl::force<impl_initializer_list>(il).end()
|
@@ -360,7 +416,7 @@ class flat_map
|
|
360
416
|
//!
|
361
417
|
//! <b>Complexity</b>: Linear in N if the range [il.begin(), il.end()) is already sorted using
|
362
418
|
//! the predicate and otherwise N logN, where N is last - first.
|
363
|
-
|
419
|
+
inline flat_map(std::initializer_list<value_type> il, const Compare& comp, const allocator_type& a)
|
364
420
|
: m_flat_tree(true
|
365
421
|
, dtl::force<impl_initializer_list>(il).begin()
|
366
422
|
, dtl::force<impl_initializer_list>(il).end()
|
@@ -378,7 +434,7 @@ class flat_map
|
|
378
434
|
//! <b>Complexity</b>: Linear in N.
|
379
435
|
//!
|
380
436
|
//! <b>Note</b>: Non-standard extension.
|
381
|
-
|
437
|
+
inline flat_map(ordered_unique_range_t, std::initializer_list<value_type> il)
|
382
438
|
: m_flat_tree(ordered_unique_range
|
383
439
|
, dtl::force<impl_initializer_list>(il).begin()
|
384
440
|
, dtl::force<impl_initializer_list>(il).end())
|
@@ -394,7 +450,7 @@ class flat_map
|
|
394
450
|
//! <b>Complexity</b>: Linear in N.
|
395
451
|
//!
|
396
452
|
//! <b>Note</b>: Non-standard extension.
|
397
|
-
|
453
|
+
inline flat_map(ordered_unique_range_t, std::initializer_list<value_type> il, const Compare& comp)
|
398
454
|
: m_flat_tree(ordered_unique_range
|
399
455
|
, dtl::force<impl_initializer_list>(il).begin()
|
400
456
|
, dtl::force<impl_initializer_list>(il).end()
|
@@ -411,7 +467,7 @@ class flat_map
|
|
411
467
|
//! <b>Complexity</b>: Linear in N.
|
412
468
|
//!
|
413
469
|
//! <b>Note</b>: Non-standard extension.
|
414
|
-
|
470
|
+
inline flat_map(ordered_unique_range_t, std::initializer_list<value_type> il, const Compare& comp, const allocator_type& a)
|
415
471
|
: m_flat_tree( ordered_unique_range
|
416
472
|
, dtl::force<impl_initializer_list>(il).begin()
|
417
473
|
, dtl::force<impl_initializer_list>(il).end()
|
@@ -423,7 +479,7 @@ class flat_map
|
|
423
479
|
//! <b>Effects</b>: Copy constructs a flat_map.
|
424
480
|
//!
|
425
481
|
//! <b>Complexity</b>: Linear in x.size().
|
426
|
-
|
482
|
+
inline flat_map(const flat_map& x)
|
427
483
|
: m_flat_tree(x.m_flat_tree)
|
428
484
|
{}
|
429
485
|
|
@@ -433,7 +489,7 @@ class flat_map
|
|
433
489
|
//! <b>Complexity</b>: Constant.
|
434
490
|
//!
|
435
491
|
//! <b>Postcondition</b>: x is emptied.
|
436
|
-
|
492
|
+
inline flat_map(BOOST_RV_REF(flat_map) x)
|
437
493
|
BOOST_NOEXCEPT_IF(boost::container::dtl::is_nothrow_move_constructible<Compare>::value)
|
438
494
|
: m_flat_tree(boost::move(x.m_flat_tree))
|
439
495
|
{}
|
@@ -441,7 +497,7 @@ class flat_map
|
|
441
497
|
//! <b>Effects</b>: Copy constructs a flat_map using the specified allocator.
|
442
498
|
//!
|
443
499
|
//! <b>Complexity</b>: Linear in x.size().
|
444
|
-
|
500
|
+
inline flat_map(const flat_map& x, const allocator_type &a)
|
445
501
|
: m_flat_tree(x.m_flat_tree, dtl::force<const impl_allocator_type>(a))
|
446
502
|
{}
|
447
503
|
|
@@ -449,14 +505,14 @@ class flat_map
|
|
449
505
|
//! Constructs *this using x's resources.
|
450
506
|
//!
|
451
507
|
//! <b>Complexity</b>: Constant if x.get_allocator() == a, linear otherwise.
|
452
|
-
|
508
|
+
inline flat_map(BOOST_RV_REF(flat_map) x, const allocator_type &a)
|
453
509
|
: m_flat_tree(boost::move(x.m_flat_tree), dtl::force<const impl_allocator_type>(a))
|
454
510
|
{}
|
455
511
|
|
456
512
|
//! <b>Effects</b>: Makes *this a copy of x.
|
457
513
|
//!
|
458
514
|
//! <b>Complexity</b>: Linear in x.size().
|
459
|
-
|
515
|
+
inline flat_map& operator=(BOOST_COPY_ASSIGN_REF(flat_map) x)
|
460
516
|
{ m_flat_tree = x.m_flat_tree; return *this; }
|
461
517
|
|
462
518
|
//! <b>Effects</b>: Move constructs a flat_map.
|
@@ -468,7 +524,7 @@ class flat_map
|
|
468
524
|
//! <b>Complexity</b>: Constant if allocator_traits_type::
|
469
525
|
//! propagate_on_container_move_assignment is true or
|
470
526
|
//! this->get>allocator() == x.get_allocator(). Linear otherwise.
|
471
|
-
|
527
|
+
inline flat_map& operator=(BOOST_RV_REF(flat_map) x)
|
472
528
|
BOOST_NOEXCEPT_IF( (allocator_traits_type::propagate_on_container_move_assignment::value ||
|
473
529
|
allocator_traits_type::is_always_equal::value) &&
|
474
530
|
boost::container::dtl::is_nothrow_move_assignable<Compare>::value)
|
@@ -488,7 +544,8 @@ class flat_map
|
|
488
544
|
//! was passed to the object's constructor.
|
489
545
|
//!
|
490
546
|
//! <b>Complexity</b>: Constant.
|
491
|
-
|
547
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
548
|
+
allocator_type get_allocator() const BOOST_NOEXCEPT_OR_NOTHROW
|
492
549
|
{ return dtl::force_copy<allocator_type>(m_flat_tree.get_allocator()); }
|
493
550
|
|
494
551
|
//! <b>Effects</b>: Returns a reference to the internal allocator.
|
@@ -498,7 +555,8 @@ class flat_map
|
|
498
555
|
//! <b>Complexity</b>: Constant.
|
499
556
|
//!
|
500
557
|
//! <b>Note</b>: Non-standard extension.
|
501
|
-
|
558
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
559
|
+
get_stored_allocator_noconst_return_t get_stored_allocator() BOOST_NOEXCEPT_OR_NOTHROW
|
502
560
|
{
|
503
561
|
impl_get_stored_allocator_noconst_return_t r = m_flat_tree.get_stored_allocator();
|
504
562
|
return dtl::force<stored_allocator_type>(r);
|
@@ -511,7 +569,8 @@ class flat_map
|
|
511
569
|
//! <b>Complexity</b>: Constant.
|
512
570
|
//!
|
513
571
|
//! <b>Note</b>: Non-standard extension.
|
514
|
-
|
572
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
573
|
+
get_stored_allocator_const_return_t get_stored_allocator() const BOOST_NOEXCEPT_OR_NOTHROW
|
515
574
|
{
|
516
575
|
impl_get_stored_allocator_const_return_t r = m_flat_tree.get_stored_allocator();
|
517
576
|
return dtl::force<const stored_allocator_type>(r);
|
@@ -528,7 +587,8 @@ class flat_map
|
|
528
587
|
//! <b>Throws</b>: Nothing.
|
529
588
|
//!
|
530
589
|
//! <b>Complexity</b>: Constant.
|
531
|
-
|
590
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
591
|
+
iterator begin() BOOST_NOEXCEPT_OR_NOTHROW
|
532
592
|
{ return dtl::force_copy<iterator>(m_flat_tree.begin()); }
|
533
593
|
|
534
594
|
//! <b>Effects</b>: Returns a const_iterator to the first element contained in the container.
|
@@ -536,7 +596,8 @@ class flat_map
|
|
536
596
|
//! <b>Throws</b>: Nothing.
|
537
597
|
//!
|
538
598
|
//! <b>Complexity</b>: Constant.
|
539
|
-
|
599
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
600
|
+
const_iterator begin() const BOOST_NOEXCEPT_OR_NOTHROW
|
540
601
|
{ return dtl::force_copy<const_iterator>(m_flat_tree.begin()); }
|
541
602
|
|
542
603
|
//! <b>Effects</b>: Returns an iterator to the end of the container.
|
@@ -544,7 +605,8 @@ class flat_map
|
|
544
605
|
//! <b>Throws</b>: Nothing.
|
545
606
|
//!
|
546
607
|
//! <b>Complexity</b>: Constant.
|
547
|
-
|
608
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
609
|
+
iterator end() BOOST_NOEXCEPT_OR_NOTHROW
|
548
610
|
{ return dtl::force_copy<iterator>(m_flat_tree.end()); }
|
549
611
|
|
550
612
|
//! <b>Effects</b>: Returns a const_iterator to the end of the container.
|
@@ -552,7 +614,8 @@ class flat_map
|
|
552
614
|
//! <b>Throws</b>: Nothing.
|
553
615
|
//!
|
554
616
|
//! <b>Complexity</b>: Constant.
|
555
|
-
|
617
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
618
|
+
const_iterator end() const BOOST_NOEXCEPT_OR_NOTHROW
|
556
619
|
{ return dtl::force_copy<const_iterator>(m_flat_tree.end()); }
|
557
620
|
|
558
621
|
//! <b>Effects</b>: Returns a reverse_iterator pointing to the beginning
|
@@ -561,7 +624,8 @@ class flat_map
|
|
561
624
|
//! <b>Throws</b>: Nothing.
|
562
625
|
//!
|
563
626
|
//! <b>Complexity</b>: Constant.
|
564
|
-
|
627
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
628
|
+
reverse_iterator rbegin() BOOST_NOEXCEPT_OR_NOTHROW
|
565
629
|
{ return dtl::force_copy<reverse_iterator>(m_flat_tree.rbegin()); }
|
566
630
|
|
567
631
|
//! <b>Effects</b>: Returns a const_reverse_iterator pointing to the beginning
|
@@ -570,7 +634,8 @@ class flat_map
|
|
570
634
|
//! <b>Throws</b>: Nothing.
|
571
635
|
//!
|
572
636
|
//! <b>Complexity</b>: Constant.
|
573
|
-
|
637
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
638
|
+
const_reverse_iterator rbegin() const BOOST_NOEXCEPT_OR_NOTHROW
|
574
639
|
{ return dtl::force_copy<const_reverse_iterator>(m_flat_tree.rbegin()); }
|
575
640
|
|
576
641
|
//! <b>Effects</b>: Returns a reverse_iterator pointing to the end
|
@@ -579,7 +644,8 @@ class flat_map
|
|
579
644
|
//! <b>Throws</b>: Nothing.
|
580
645
|
//!
|
581
646
|
//! <b>Complexity</b>: Constant.
|
582
|
-
|
647
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
648
|
+
reverse_iterator rend() BOOST_NOEXCEPT_OR_NOTHROW
|
583
649
|
{ return dtl::force_copy<reverse_iterator>(m_flat_tree.rend()); }
|
584
650
|
|
585
651
|
//! <b>Effects</b>: Returns a const_reverse_iterator pointing to the end
|
@@ -588,7 +654,8 @@ class flat_map
|
|
588
654
|
//! <b>Throws</b>: Nothing.
|
589
655
|
//!
|
590
656
|
//! <b>Complexity</b>: Constant.
|
591
|
-
|
657
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
658
|
+
const_reverse_iterator rend() const BOOST_NOEXCEPT_OR_NOTHROW
|
592
659
|
{ return dtl::force_copy<const_reverse_iterator>(m_flat_tree.rend()); }
|
593
660
|
|
594
661
|
//! <b>Effects</b>: Returns a const_iterator to the first element contained in the container.
|
@@ -596,7 +663,8 @@ class flat_map
|
|
596
663
|
//! <b>Throws</b>: Nothing.
|
597
664
|
//!
|
598
665
|
//! <b>Complexity</b>: Constant.
|
599
|
-
|
666
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
667
|
+
const_iterator cbegin() const BOOST_NOEXCEPT_OR_NOTHROW
|
600
668
|
{ return dtl::force_copy<const_iterator>(m_flat_tree.cbegin()); }
|
601
669
|
|
602
670
|
//! <b>Effects</b>: Returns a const_iterator to the end of the container.
|
@@ -604,7 +672,8 @@ class flat_map
|
|
604
672
|
//! <b>Throws</b>: Nothing.
|
605
673
|
//!
|
606
674
|
//! <b>Complexity</b>: Constant.
|
607
|
-
|
675
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
676
|
+
const_iterator cend() const BOOST_NOEXCEPT_OR_NOTHROW
|
608
677
|
{ return dtl::force_copy<const_iterator>(m_flat_tree.cend()); }
|
609
678
|
|
610
679
|
//! <b>Effects</b>: Returns a const_reverse_iterator pointing to the beginning
|
@@ -613,7 +682,8 @@ class flat_map
|
|
613
682
|
//! <b>Throws</b>: Nothing.
|
614
683
|
//!
|
615
684
|
//! <b>Complexity</b>: Constant.
|
616
|
-
|
685
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
686
|
+
const_reverse_iterator crbegin() const BOOST_NOEXCEPT_OR_NOTHROW
|
617
687
|
{ return dtl::force_copy<const_reverse_iterator>(m_flat_tree.crbegin()); }
|
618
688
|
|
619
689
|
//! <b>Effects</b>: Returns a const_reverse_iterator pointing to the end
|
@@ -622,7 +692,8 @@ class flat_map
|
|
622
692
|
//! <b>Throws</b>: Nothing.
|
623
693
|
//!
|
624
694
|
//! <b>Complexity</b>: Constant.
|
625
|
-
|
695
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
696
|
+
const_reverse_iterator crend() const BOOST_NOEXCEPT_OR_NOTHROW
|
626
697
|
{ return dtl::force_copy<const_reverse_iterator>(m_flat_tree.crend()); }
|
627
698
|
|
628
699
|
//////////////////////////////////////////////
|
@@ -636,7 +707,8 @@ class flat_map
|
|
636
707
|
//! <b>Throws</b>: Nothing.
|
637
708
|
//!
|
638
709
|
//! <b>Complexity</b>: Constant.
|
639
|
-
|
710
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
711
|
+
bool empty() const BOOST_NOEXCEPT_OR_NOTHROW
|
640
712
|
{ return m_flat_tree.empty(); }
|
641
713
|
|
642
714
|
//! <b>Effects</b>: Returns the number of the elements contained in the container.
|
@@ -644,7 +716,8 @@ class flat_map
|
|
644
716
|
//! <b>Throws</b>: Nothing.
|
645
717
|
//!
|
646
718
|
//! <b>Complexity</b>: Constant.
|
647
|
-
|
719
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
720
|
+
size_type size() const BOOST_NOEXCEPT_OR_NOTHROW
|
648
721
|
{ return m_flat_tree.size(); }
|
649
722
|
|
650
723
|
//! <b>Effects</b>: Returns the largest possible size of the container.
|
@@ -652,7 +725,8 @@ class flat_map
|
|
652
725
|
//! <b>Throws</b>: Nothing.
|
653
726
|
//!
|
654
727
|
//! <b>Complexity</b>: Constant.
|
655
|
-
|
728
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
729
|
+
size_type max_size() const BOOST_NOEXCEPT_OR_NOTHROW
|
656
730
|
{ return m_flat_tree.max_size(); }
|
657
731
|
|
658
732
|
//! <b>Effects</b>: Number of elements for which memory has been allocated.
|
@@ -661,7 +735,8 @@ class flat_map
|
|
661
735
|
//! <b>Throws</b>: Nothing.
|
662
736
|
//!
|
663
737
|
//! <b>Complexity</b>: Constant.
|
664
|
-
|
738
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
739
|
+
size_type capacity() const BOOST_NOEXCEPT_OR_NOTHROW
|
665
740
|
{ return m_flat_tree.capacity(); }
|
666
741
|
|
667
742
|
//! <b>Effects</b>: If n is less than or equal to capacity(), or the
|
@@ -674,7 +749,7 @@ class flat_map
|
|
674
749
|
//!
|
675
750
|
//! <b>Note</b>: If capacity() is less than "cnt", iterators and references to
|
676
751
|
//! to values might be invalidated.
|
677
|
-
|
752
|
+
inline void reserve(size_type cnt)
|
678
753
|
{ m_flat_tree.reserve(cnt); }
|
679
754
|
|
680
755
|
//! <b>Effects</b>: Tries to deallocate the excess of memory created
|
@@ -683,7 +758,7 @@ class flat_map
|
|
683
758
|
//! <b>Throws</b>: If memory allocation throws, or T's copy constructor throws.
|
684
759
|
//!
|
685
760
|
//! <b>Complexity</b>: Linear to size().
|
686
|
-
|
761
|
+
inline void shrink_to_fit()
|
687
762
|
{ m_flat_tree.shrink_to_fit(); }
|
688
763
|
|
689
764
|
//////////////////////////////////////////////
|
@@ -698,7 +773,7 @@ class flat_map
|
|
698
773
|
//!
|
699
774
|
//! Returns: A reference to the mapped_type corresponding to x in *this.
|
700
775
|
//!
|
701
|
-
//! Complexity: Logarithmic.
|
776
|
+
//! Complexity: Logarithmic search time plus linear insertion time in case no equivalent key is present.
|
702
777
|
mapped_type &operator[](const key_type& k);
|
703
778
|
|
704
779
|
//! Effects: If there is no key equivalent to x in the flat_map, inserts
|
@@ -706,12 +781,12 @@ class flat_map
|
|
706
781
|
//!
|
707
782
|
//! Returns: A reference to the mapped_type corresponding to x in *this.
|
708
783
|
//!
|
709
|
-
//! Complexity: Logarithmic.
|
710
|
-
mapped_type &operator[](key_type &&k)
|
784
|
+
//! Complexity: Logarithmic search time plus linear insertion time in case no equivalent key is present.
|
785
|
+
mapped_type &operator[](key_type &&k);
|
711
786
|
#elif defined(BOOST_MOVE_HELPERS_RETURN_SFINAE_BROKEN)
|
712
787
|
//in compilers like GCC 3.4, we can't catch temporaries
|
713
|
-
|
714
|
-
|
788
|
+
inline mapped_type& operator[](const key_type &k) { return this->priv_subscript(k); }
|
789
|
+
inline mapped_type& operator[](BOOST_RV_REF(key_type) k) { return this->priv_subscript(::boost::move(k)); }
|
715
790
|
#else
|
716
791
|
BOOST_MOVE_CONVERSION_AWARE_CATCH( operator[] , key_type, mapped_type&, this->priv_subscript)
|
717
792
|
#endif
|
@@ -727,9 +802,9 @@ class flat_map
|
|
727
802
|
//! Returns: The bool component is true if the insertion took place and false if the assignment
|
728
803
|
//! took place. The iterator component is pointing at the element that was inserted or updated.
|
729
804
|
//!
|
730
|
-
//! Complexity: Logarithmic in
|
805
|
+
//! Complexity: Logarithmic search time plus linear insertion time in case no equivalent key is present.
|
731
806
|
template <class M>
|
732
|
-
|
807
|
+
inline std::pair<iterator, bool> insert_or_assign(const key_type& k, BOOST_FWD_REF(M) obj)
|
733
808
|
{
|
734
809
|
return dtl::force_copy< std::pair<iterator, bool> >
|
735
810
|
(this->m_flat_tree.insert_or_assign
|
@@ -750,7 +825,7 @@ class flat_map
|
|
750
825
|
//!
|
751
826
|
//! Complexity: Logarithmic in the size of the container.
|
752
827
|
template <class M>
|
753
|
-
|
828
|
+
inline std::pair<iterator, bool> insert_or_assign(BOOST_RV_REF(key_type) k, BOOST_FWD_REF(M) obj)
|
754
829
|
{
|
755
830
|
return dtl::force_copy< std::pair<iterator, bool> >
|
756
831
|
(this->m_flat_tree.insert_or_assign
|
@@ -773,12 +848,12 @@ class flat_map
|
|
773
848
|
//! Complexity: Logarithmic in the size of the container in general, but amortized constant if
|
774
849
|
//! the new element is inserted just before hint.
|
775
850
|
template <class M>
|
776
|
-
|
851
|
+
inline iterator insert_or_assign(const_iterator hint, const key_type& k, BOOST_FWD_REF(M) obj)
|
777
852
|
{
|
778
|
-
return dtl::force_copy<
|
853
|
+
return dtl::force_copy<iterator>
|
779
854
|
(this->m_flat_tree.insert_or_assign
|
780
855
|
( dtl::force_copy<impl_const_iterator>(hint)
|
781
|
-
, k, ::boost::forward<M>(obj))
|
856
|
+
, k, ::boost::forward<M>(obj)).first
|
782
857
|
);
|
783
858
|
}
|
784
859
|
|
@@ -797,29 +872,33 @@ class flat_map
|
|
797
872
|
//! Complexity: Logarithmic in the size of the container in general, but amortized constant if
|
798
873
|
//! the new element is inserted just before hint.
|
799
874
|
template <class M>
|
800
|
-
|
875
|
+
inline iterator insert_or_assign(const_iterator hint, BOOST_RV_REF(key_type) k, BOOST_FWD_REF(M) obj)
|
801
876
|
{
|
802
|
-
return dtl::force_copy<
|
877
|
+
return dtl::force_copy<iterator>
|
803
878
|
(this->m_flat_tree.insert_or_assign
|
804
879
|
( dtl::force_copy<impl_const_iterator>(hint)
|
805
|
-
, ::boost::move(k), ::boost::forward<M>(obj))
|
880
|
+
, ::boost::move(k), ::boost::forward<M>(obj)).first
|
806
881
|
);
|
807
882
|
}
|
808
883
|
|
809
884
|
//! @copydoc ::boost::container::flat_set::nth(size_type)
|
810
|
-
|
885
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
886
|
+
iterator nth(size_type n) BOOST_NOEXCEPT_OR_NOTHROW
|
811
887
|
{ return dtl::force_copy<iterator>(m_flat_tree.nth(n)); }
|
812
888
|
|
813
889
|
//! @copydoc ::boost::container::flat_set::nth(size_type) const
|
814
|
-
|
815
|
-
|
890
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
891
|
+
const_iterator nth(size_type n) const BOOST_NOEXCEPT_OR_NOTHROW
|
892
|
+
{ return dtl::force_copy<const_iterator>(m_flat_tree.nth(n)); }
|
816
893
|
|
817
894
|
//! @copydoc ::boost::container::flat_set::index_of(iterator)
|
818
|
-
|
895
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
896
|
+
size_type index_of(iterator p) BOOST_NOEXCEPT_OR_NOTHROW
|
819
897
|
{ return m_flat_tree.index_of(dtl::force_copy<impl_iterator>(p)); }
|
820
898
|
|
821
899
|
//! @copydoc ::boost::container::flat_set::index_of(const_iterator) const
|
822
|
-
|
900
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
901
|
+
size_type index_of(const_iterator p) const BOOST_NOEXCEPT_OR_NOTHROW
|
823
902
|
{ return m_flat_tree.index_of(dtl::force_copy<impl_const_iterator>(p)); }
|
824
903
|
|
825
904
|
//! Returns: A reference to the element whose key is equivalent to x.
|
@@ -827,7 +906,7 @@ class flat_map
|
|
827
906
|
//! Throws: An exception object of type out_of_range if no such element is present.
|
828
907
|
//!
|
829
908
|
//! Complexity: logarithmic.
|
830
|
-
T& at(const key_type& k)
|
909
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD T& at(const key_type& k)
|
831
910
|
{
|
832
911
|
iterator i = this->find(k);
|
833
912
|
if(i == this->end()){
|
@@ -841,7 +920,7 @@ class flat_map
|
|
841
920
|
//! Throws: An exception object of type out_of_range if no such element is present.
|
842
921
|
//!
|
843
922
|
//! Complexity: logarithmic.
|
844
|
-
const T& at(const key_type& k) const
|
923
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD const T& at(const key_type& k) const
|
845
924
|
{
|
846
925
|
const_iterator i = this->find(k);
|
847
926
|
if(i == this->end()){
|
@@ -871,7 +950,7 @@ class flat_map
|
|
871
950
|
//!
|
872
951
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
873
952
|
template <class... Args>
|
874
|
-
|
953
|
+
inline std::pair<iterator,bool> emplace(BOOST_FWD_REF(Args)... args)
|
875
954
|
{ return dtl::force_copy< std::pair<iterator, bool> >(m_flat_tree.emplace_unique(boost::forward<Args>(args)...)); }
|
876
955
|
|
877
956
|
//! <b>Effects</b>: Inserts an object of type T constructed with
|
@@ -887,7 +966,7 @@ class flat_map
|
|
887
966
|
//!
|
888
967
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
889
968
|
template <class... Args>
|
890
|
-
|
969
|
+
inline iterator emplace_hint(const_iterator hint, BOOST_FWD_REF(Args)... args)
|
891
970
|
{
|
892
971
|
return dtl::force_copy<iterator>
|
893
972
|
(m_flat_tree.emplace_hint_unique( dtl::force_copy<impl_const_iterator>(hint)
|
@@ -906,7 +985,7 @@ class flat_map
|
|
906
985
|
//!
|
907
986
|
//! <b>Complexity</b>: Logarithmic.
|
908
987
|
template <class... Args>
|
909
|
-
|
988
|
+
inline std::pair<iterator, bool> try_emplace(const key_type& k, BOOST_FWD_REF(Args)... args)
|
910
989
|
{
|
911
990
|
return dtl::force_copy< std::pair<iterator, bool> >(
|
912
991
|
m_flat_tree.try_emplace(impl_const_iterator(), k, boost::forward<Args>(args)...));
|
@@ -924,7 +1003,7 @@ class flat_map
|
|
924
1003
|
//! <b>Complexity</b>: Logarithmic in general, but amortized constant if value
|
925
1004
|
//! is inserted right before p.
|
926
1005
|
template <class... Args>
|
927
|
-
|
1006
|
+
inline iterator try_emplace(const_iterator hint, const key_type &k, BOOST_FWD_REF(Args)... args)
|
928
1007
|
{
|
929
1008
|
return dtl::force_copy<iterator>(m_flat_tree.try_emplace
|
930
1009
|
(dtl::force_copy<impl_const_iterator>(hint), k, boost::forward<Args>(args)...).first);
|
@@ -940,9 +1019,9 @@ class flat_map
|
|
940
1019
|
//! <b>Returns</b>: The bool component of the returned pair is true if and only if the
|
941
1020
|
//! insertion took place. The returned iterator points to the map element whose key is equivalent to k.
|
942
1021
|
//!
|
943
|
-
//! <b>Complexity</b>: Logarithmic.
|
1022
|
+
//! <b>Complexity</b>: Logarithmic search time plus linear insertion time in case the key is not present.
|
944
1023
|
template <class... Args>
|
945
|
-
|
1024
|
+
inline std::pair<iterator, bool> try_emplace(BOOST_RV_REF(key_type) k, BOOST_FWD_REF(Args)... args)
|
946
1025
|
{
|
947
1026
|
return dtl::force_copy< std::pair<iterator, bool> >
|
948
1027
|
(m_flat_tree.try_emplace(impl_const_iterator(), boost::move(k), boost::forward<Args>(args)...));
|
@@ -958,9 +1037,9 @@ class flat_map
|
|
958
1037
|
//! <b>Returns</b>: The returned iterator points to the map element whose key is equivalent to k.
|
959
1038
|
//!
|
960
1039
|
//! <b>Complexity</b>: Logarithmic in general, but amortized constant if value
|
961
|
-
//! is inserted right before p.
|
1040
|
+
//! is inserted right before p. Linear insertion time in case no equivalent key is present.
|
962
1041
|
template <class... Args>
|
963
|
-
|
1042
|
+
inline iterator try_emplace(const_iterator hint, BOOST_RV_REF(key_type) k, BOOST_FWD_REF(Args)... args)
|
964
1043
|
{
|
965
1044
|
return dtl::force_copy<iterator>
|
966
1045
|
(m_flat_tree.try_emplace(dtl::force_copy
|
@@ -971,39 +1050,39 @@ class flat_map
|
|
971
1050
|
|
972
1051
|
#define BOOST_CONTAINER_FLAT_MAP_EMPLACE_CODE(N) \
|
973
1052
|
BOOST_MOVE_TMPL_LT##N BOOST_MOVE_CLASS##N BOOST_MOVE_GT##N \
|
974
|
-
|
1053
|
+
inline std::pair<iterator,bool> emplace(BOOST_MOVE_UREF##N)\
|
975
1054
|
{\
|
976
1055
|
return dtl::force_copy< std::pair<iterator, bool> >\
|
977
1056
|
(m_flat_tree.emplace_unique(BOOST_MOVE_FWD##N));\
|
978
1057
|
}\
|
979
1058
|
\
|
980
1059
|
BOOST_MOVE_TMPL_LT##N BOOST_MOVE_CLASS##N BOOST_MOVE_GT##N \
|
981
|
-
|
1060
|
+
inline iterator emplace_hint(const_iterator hint BOOST_MOVE_I##N BOOST_MOVE_UREF##N)\
|
982
1061
|
{\
|
983
1062
|
return dtl::force_copy<iterator>(m_flat_tree.emplace_hint_unique\
|
984
1063
|
(dtl::force_copy<impl_const_iterator>(hint) BOOST_MOVE_I##N BOOST_MOVE_FWD##N));\
|
985
1064
|
}\
|
986
1065
|
BOOST_MOVE_TMPL_LT##N BOOST_MOVE_CLASS##N BOOST_MOVE_GT##N \
|
987
|
-
|
1066
|
+
inline std::pair<iterator, bool> try_emplace(const key_type& k BOOST_MOVE_I##N BOOST_MOVE_UREF##N)\
|
988
1067
|
{\
|
989
1068
|
return dtl::force_copy< std::pair<iterator, bool> >\
|
990
1069
|
(m_flat_tree.try_emplace(impl_const_iterator(), k BOOST_MOVE_I##N BOOST_MOVE_FWD##N));\
|
991
1070
|
}\
|
992
1071
|
\
|
993
1072
|
BOOST_MOVE_TMPL_LT##N BOOST_MOVE_CLASS##N BOOST_MOVE_GT##N \
|
994
|
-
|
1073
|
+
inline iterator try_emplace(const_iterator hint, const key_type &k BOOST_MOVE_I##N BOOST_MOVE_UREF##N)\
|
995
1074
|
{ return dtl::force_copy<iterator>(m_flat_tree.try_emplace\
|
996
1075
|
(dtl::force_copy<impl_const_iterator>(hint), k BOOST_MOVE_I##N BOOST_MOVE_FWD##N).first); }\
|
997
1076
|
\
|
998
1077
|
BOOST_MOVE_TMPL_LT##N BOOST_MOVE_CLASS##N BOOST_MOVE_GT##N \
|
999
|
-
|
1078
|
+
inline std::pair<iterator, bool> try_emplace(BOOST_RV_REF(key_type) k BOOST_MOVE_I##N BOOST_MOVE_UREF##N)\
|
1000
1079
|
{\
|
1001
1080
|
return dtl::force_copy< std::pair<iterator, bool> >\
|
1002
1081
|
(m_flat_tree.try_emplace(impl_const_iterator(), boost::move(k) BOOST_MOVE_I##N BOOST_MOVE_FWD##N));\
|
1003
1082
|
}\
|
1004
1083
|
\
|
1005
1084
|
BOOST_MOVE_TMPL_LT##N BOOST_MOVE_CLASS##N BOOST_MOVE_GT##N \
|
1006
|
-
|
1085
|
+
inline iterator try_emplace(const_iterator hint, BOOST_RV_REF(key_type) k BOOST_MOVE_I##N BOOST_MOVE_UREF##N)\
|
1007
1086
|
{ return dtl::force_copy<iterator>(m_flat_tree.try_emplace\
|
1008
1087
|
(dtl::force_copy<impl_const_iterator>(hint), boost::move(k) BOOST_MOVE_I##N BOOST_MOVE_FWD##N).first); }\
|
1009
1088
|
//
|
@@ -1023,7 +1102,7 @@ class flat_map
|
|
1023
1102
|
//! to the elements with bigger keys than x.
|
1024
1103
|
//!
|
1025
1104
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
1026
|
-
|
1105
|
+
inline std::pair<iterator,bool> insert(const value_type& x)
|
1027
1106
|
{ return dtl::force_copy<std::pair<iterator,bool> >(
|
1028
1107
|
m_flat_tree.insert_unique(dtl::force<const impl_value_type>(x))); }
|
1029
1108
|
|
@@ -1038,11 +1117,13 @@ class flat_map
|
|
1038
1117
|
//! to the elements with bigger keys than x.
|
1039
1118
|
//!
|
1040
1119
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
1041
|
-
|
1042
|
-
{
|
1043
|
-
|
1120
|
+
inline std::pair<iterator,bool> insert(BOOST_RV_REF(value_type) x)
|
1121
|
+
{
|
1122
|
+
return dtl::force_copy<std::pair<iterator,bool> >(
|
1123
|
+
m_flat_tree.insert_unique(boost::move(dtl::force<impl_value_type>(x))));
|
1124
|
+
}
|
1044
1125
|
|
1045
|
-
//! <b>Effects</b>: Inserts a new value_type
|
1126
|
+
//! <b>Effects</b>: Inserts a new value_type constructed from the pair if and
|
1046
1127
|
//! only if there is no element in the container with key equivalent to the key of x.
|
1047
1128
|
//!
|
1048
1129
|
//! <b>Returns</b>: The bool component of the returned pair is true if and only
|
@@ -1053,10 +1134,15 @@ class flat_map
|
|
1053
1134
|
//! to the elements with bigger keys than x.
|
1054
1135
|
//!
|
1055
1136
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
1056
|
-
|
1137
|
+
template <class Pair>
|
1138
|
+
inline BOOST_CONTAINER_DOC1ST
|
1139
|
+
( std::pair<iterator BOOST_MOVE_I bool>
|
1140
|
+
, typename dtl::enable_if_c<dtl::is_convertible<Pair BOOST_MOVE_I dtl_pair_t>::value
|
1141
|
+
BOOST_MOVE_I std::pair<iterator BOOST_MOVE_I bool> >::type)
|
1142
|
+
insert(BOOST_FWD_REF(Pair) x)
|
1057
1143
|
{
|
1058
1144
|
return dtl::force_copy<std::pair<iterator,bool> >
|
1059
|
-
|
1145
|
+
(m_flat_tree.emplace_unique(boost::forward<Pair>(x)));
|
1060
1146
|
}
|
1061
1147
|
|
1062
1148
|
//! <b>Effects</b>: Inserts a copy of x in the container if and only if there is
|
@@ -1070,7 +1156,7 @@ class flat_map
|
|
1070
1156
|
//! right before p) plus insertion linear to the elements with bigger keys than x.
|
1071
1157
|
//!
|
1072
1158
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
1073
|
-
|
1159
|
+
inline iterator insert(const_iterator p, const value_type& x)
|
1074
1160
|
{
|
1075
1161
|
return dtl::force_copy<iterator>(
|
1076
1162
|
m_flat_tree.insert_unique( dtl::force_copy<impl_const_iterator>(p)
|
@@ -1086,14 +1172,14 @@ class flat_map
|
|
1086
1172
|
//! right before p) plus insertion linear to the elements with bigger keys than x.
|
1087
1173
|
//!
|
1088
1174
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
1089
|
-
|
1175
|
+
inline iterator insert(const_iterator p, BOOST_RV_REF(value_type) x)
|
1090
1176
|
{
|
1091
1177
|
return dtl::force_copy<iterator>
|
1092
1178
|
(m_flat_tree.insert_unique( dtl::force_copy<impl_const_iterator>(p)
|
1093
1179
|
, boost::move(dtl::force<impl_value_type>(x))));
|
1094
1180
|
}
|
1095
1181
|
|
1096
|
-
//! <b>Effects</b>: Inserts an element
|
1182
|
+
//! <b>Effects</b>: Inserts an element constructed from x in the container.
|
1097
1183
|
//! p is a hint pointing to where the insert should start to search.
|
1098
1184
|
//!
|
1099
1185
|
//! <b>Returns</b>: An iterator pointing to the element with key equivalent to the key of x.
|
@@ -1102,10 +1188,15 @@ class flat_map
|
|
1102
1188
|
//! right before p) plus insertion linear to the elements with bigger keys than x.
|
1103
1189
|
//!
|
1104
1190
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
1105
|
-
|
1191
|
+
template <class Pair>
|
1192
|
+
inline BOOST_CONTAINER_DOC1ST
|
1193
|
+
( iterator
|
1194
|
+
, typename dtl::enable_if_c<dtl::is_convertible<Pair BOOST_MOVE_I dtl_pair_t>::value
|
1195
|
+
BOOST_MOVE_I iterator>::type)
|
1196
|
+
insert(const_iterator p, BOOST_FWD_REF(Pair) x)
|
1106
1197
|
{
|
1107
1198
|
return dtl::force_copy<iterator>(
|
1108
|
-
m_flat_tree.
|
1199
|
+
m_flat_tree.emplace_hint_unique(dtl::force_copy<impl_const_iterator>(p), boost::forward<Pair>(x)));
|
1109
1200
|
}
|
1110
1201
|
|
1111
1202
|
//! <b>Requires</b>: first, last are not iterators into *this.
|
@@ -1117,7 +1208,7 @@ class flat_map
|
|
1117
1208
|
//!
|
1118
1209
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
1119
1210
|
template <class InputIterator>
|
1120
|
-
|
1211
|
+
inline void insert(InputIterator first, InputIterator last)
|
1121
1212
|
{ m_flat_tree.insert_unique(first, last); }
|
1122
1213
|
|
1123
1214
|
//! <b>Requires</b>: first, last are not iterators into *this.
|
@@ -1135,7 +1226,7 @@ class flat_map
|
|
1135
1226
|
//!
|
1136
1227
|
//! <b>Note</b>: Non-standard extension.
|
1137
1228
|
template <class InputIterator>
|
1138
|
-
|
1229
|
+
inline void insert(ordered_unique_range_t, InputIterator first, InputIterator last)
|
1139
1230
|
{ m_flat_tree.insert_unique(ordered_unique_range, first, last); }
|
1140
1231
|
|
1141
1232
|
#if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
|
@@ -1145,7 +1236,7 @@ class flat_map
|
|
1145
1236
|
//! <b>Complexity</b>: N log(N).
|
1146
1237
|
//!
|
1147
1238
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
1148
|
-
|
1239
|
+
inline void insert(std::initializer_list<value_type> il)
|
1149
1240
|
{
|
1150
1241
|
m_flat_tree.insert_unique( dtl::force<impl_initializer_list>(il).begin()
|
1151
1242
|
, dtl::force<impl_initializer_list>(il).end());
|
@@ -1163,7 +1254,7 @@ class flat_map
|
|
1163
1254
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
1164
1255
|
//!
|
1165
1256
|
//! <b>Note</b>: Non-standard extension.
|
1166
|
-
|
1257
|
+
inline void insert(ordered_unique_range_t, std::initializer_list<value_type> il)
|
1167
1258
|
{
|
1168
1259
|
m_flat_tree.insert_unique(ordered_unique_range
|
1169
1260
|
, dtl::force<impl_initializer_list>(il).begin()
|
@@ -1173,35 +1264,30 @@ class flat_map
|
|
1173
1264
|
|
1174
1265
|
//! <b>Requires</b>: this->get_allocator() == source.get_allocator().
|
1175
1266
|
//!
|
1176
|
-
//! <b>Effects</b>:
|
1267
|
+
//! <b>Effects</b>: Move-inserts each element from source into *this a using
|
1177
1268
|
//! the comparison object of *this. If there is an element in a with key equivalent to the
|
1178
|
-
//! key of an element from source, then that element is not
|
1179
|
-
//!
|
1180
|
-
//! <b>Postcondition</b>: Pointers and references to the transferred elements of source refer
|
1181
|
-
//! to those same elements but as members of *this. Iterators referring to the transferred
|
1182
|
-
//! elements will continue to refer to their elements, but they now behave as iterators into *this,
|
1183
|
-
//! not into source.
|
1269
|
+
//! key of an element from source, then that element is not moved from source.
|
1184
1270
|
//!
|
1185
|
-
//! <b>
|
1271
|
+
//! <b>Complexity</b>: Linear in this->size() + source.size().
|
1186
1272
|
//!
|
1187
|
-
//! <b>
|
1273
|
+
//! <b>Note</b>: Invalidates all iterators and references.
|
1188
1274
|
template<class C2>
|
1189
|
-
|
1275
|
+
inline void merge(flat_map<Key, T, C2, AllocatorOrContainer>& source)
|
1190
1276
|
{ m_flat_tree.merge_unique(source.tree()); }
|
1191
1277
|
|
1192
1278
|
//! @copydoc ::boost::container::flat_map::merge(flat_map<Key, T, C2, AllocatorOrContainer>&)
|
1193
1279
|
template<class C2>
|
1194
|
-
|
1280
|
+
inline void merge(BOOST_RV_REF_BEG flat_map<Key, T, C2, AllocatorOrContainer> BOOST_RV_REF_END source)
|
1195
1281
|
{ return this->merge(static_cast<flat_map<Key, T, C2, AllocatorOrContainer>&>(source)); }
|
1196
1282
|
|
1197
1283
|
//! @copydoc ::boost::container::flat_map::merge(flat_map<Key, T, C2, AllocatorOrContainer>&)
|
1198
1284
|
template<class C2>
|
1199
|
-
|
1285
|
+
inline void merge(flat_multimap<Key, T, C2, AllocatorOrContainer>& source)
|
1200
1286
|
{ m_flat_tree.merge_unique(source.tree()); }
|
1201
1287
|
|
1202
1288
|
//! @copydoc ::boost::container::flat_map::merge(flat_map<Key, T, C2, AllocatorOrContainer>&)
|
1203
1289
|
template<class C2>
|
1204
|
-
|
1290
|
+
inline void merge(BOOST_RV_REF_BEG flat_multimap<Key, T, C2, AllocatorOrContainer> BOOST_RV_REF_END source)
|
1205
1291
|
{ return this->merge(static_cast<flat_multimap<Key, T, C2, AllocatorOrContainer>&>(source)); }
|
1206
1292
|
|
1207
1293
|
//! <b>Effects</b>: Erases the element pointed to by p.
|
@@ -1214,20 +1300,37 @@ class flat_map
|
|
1214
1300
|
//!
|
1215
1301
|
//! <b>Note</b>: Invalidates elements with keys
|
1216
1302
|
//! not less than the erased element.
|
1217
|
-
|
1303
|
+
inline iterator erase(const_iterator p)
|
1218
1304
|
{
|
1219
1305
|
return dtl::force_copy<iterator>
|
1220
1306
|
(m_flat_tree.erase(dtl::force_copy<impl_const_iterator>(p)));
|
1221
1307
|
}
|
1222
1308
|
|
1223
|
-
//! <b>Effects</b>:
|
1309
|
+
//! <b>Effects</b>: If present, erases the element in the container with key equivalent to x.
|
1224
1310
|
//!
|
1225
|
-
//! <b>Returns</b>: Returns the number of erased elements.
|
1311
|
+
//! <b>Returns</b>: Returns the number of erased elements (0/1).
|
1226
1312
|
//!
|
1227
1313
|
//! <b>Complexity</b>: Logarithmic search time plus erasure time
|
1228
1314
|
//! linear to the elements with bigger keys.
|
1229
|
-
|
1230
|
-
{ return m_flat_tree.
|
1315
|
+
inline size_type erase(const key_type& x)
|
1316
|
+
{ return m_flat_tree.erase_unique(x); }
|
1317
|
+
|
1318
|
+
//! <b>Requires</b>: This overload is available only if
|
1319
|
+
//! key_compare::is_transparent exists.
|
1320
|
+
//!
|
1321
|
+
//! <b>Effects</b>: If present, erases the element in the container with key equivalent to x.
|
1322
|
+
//!
|
1323
|
+
//! <b>Returns</b>: Returns the number of erased elements (0/1).
|
1324
|
+
template <class K>
|
1325
|
+
inline BOOST_CONTAINER_DOC1ST
|
1326
|
+
(size_type
|
1327
|
+
, typename dtl::enable_if_c<
|
1328
|
+
dtl::is_transparent<key_compare>::value && //transparent
|
1329
|
+
!dtl::is_convertible<K BOOST_MOVE_I iterator>::value && //not convertible to iterator
|
1330
|
+
!dtl::is_convertible<K BOOST_MOVE_I const_iterator>::value //not convertible to const_iterator
|
1331
|
+
BOOST_MOVE_I size_type>::type)
|
1332
|
+
erase(const K& x)
|
1333
|
+
{ return m_flat_tree.erase_unique(x); }
|
1231
1334
|
|
1232
1335
|
//! <b>Effects</b>: Erases all the elements in the range [first, last).
|
1233
1336
|
//!
|
@@ -1237,7 +1340,7 @@ class flat_map
|
|
1237
1340
|
//!
|
1238
1341
|
//! <b>Complexity</b>: Logarithmic search time plus erasure time
|
1239
1342
|
//! linear to the elements with bigger keys.
|
1240
|
-
|
1343
|
+
inline iterator erase(const_iterator first, const_iterator last)
|
1241
1344
|
{
|
1242
1345
|
return dtl::force_copy<iterator>(
|
1243
1346
|
m_flat_tree.erase( dtl::force_copy<impl_const_iterator>(first)
|
@@ -1249,17 +1352,17 @@ class flat_map
|
|
1249
1352
|
//! <b>Throws</b>: Nothing.
|
1250
1353
|
//!
|
1251
1354
|
//! <b>Complexity</b>: Constant.
|
1252
|
-
|
1355
|
+
inline void swap(flat_map& x)
|
1253
1356
|
BOOST_NOEXCEPT_IF( allocator_traits_type::is_always_equal::value
|
1254
1357
|
&& boost::container::dtl::is_nothrow_swappable<Compare>::value )
|
1255
1358
|
{ m_flat_tree.swap(x.m_flat_tree); }
|
1256
1359
|
|
1257
|
-
//! <b>Effects</b>: erase(
|
1360
|
+
//! <b>Effects</b>: erase(begin(),end()).
|
1258
1361
|
//!
|
1259
1362
|
//! <b>Postcondition</b>: size() == 0.
|
1260
1363
|
//!
|
1261
1364
|
//! <b>Complexity</b>: linear in size().
|
1262
|
-
|
1365
|
+
inline void clear() BOOST_NOEXCEPT_OR_NOTHROW
|
1263
1366
|
{ m_flat_tree.clear(); }
|
1264
1367
|
|
1265
1368
|
//////////////////////////////////////////////
|
@@ -1272,14 +1375,16 @@ class flat_map
|
|
1272
1375
|
//! of which a was constructed.
|
1273
1376
|
//!
|
1274
1377
|
//! <b>Complexity</b>: Constant.
|
1275
|
-
|
1378
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1379
|
+
key_compare key_comp() const
|
1276
1380
|
{ return dtl::force_copy<key_compare>(m_flat_tree.key_comp()); }
|
1277
1381
|
|
1278
1382
|
//! <b>Effects</b>: Returns an object of value_compare constructed out
|
1279
1383
|
//! of the comparison object.
|
1280
1384
|
//!
|
1281
1385
|
//! <b>Complexity</b>: Constant.
|
1282
|
-
|
1386
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1387
|
+
value_compare value_comp() const
|
1283
1388
|
{ return value_compare(dtl::force_copy<key_compare>(m_flat_tree.key_comp())); }
|
1284
1389
|
|
1285
1390
|
//////////////////////////////////////////////
|
@@ -1292,62 +1397,202 @@ class flat_map
|
|
1292
1397
|
//! equivalent to x, or end() if such an element is not found.
|
1293
1398
|
//!
|
1294
1399
|
//! <b>Complexity</b>: Logarithmic.
|
1295
|
-
|
1400
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1401
|
+
iterator find(const key_type& x)
|
1402
|
+
{ return dtl::force_copy<iterator>(m_flat_tree.find(x)); }
|
1403
|
+
|
1404
|
+
//! <b>Returns</b>: A const_iterator pointing to an element with the key
|
1405
|
+
//! equivalent to x, or end() if such an element is not found.
|
1406
|
+
//!
|
1407
|
+
//! <b>Complexity</b>: Logarithmic.
|
1408
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1409
|
+
const_iterator find(const key_type& x) const
|
1410
|
+
{ return dtl::force_copy<const_iterator>(m_flat_tree.find(x)); }
|
1411
|
+
|
1412
|
+
//! <b>Requires</b>: This overload is available only if
|
1413
|
+
//! key_compare::is_transparent exists.
|
1414
|
+
//!
|
1415
|
+
//! <b>Returns</b>: An iterator pointing to an element with the key
|
1416
|
+
//! equivalent to x, or end() if such an element is not found.
|
1417
|
+
//!
|
1418
|
+
//! <b>Complexity</b>: Logarithmic.
|
1419
|
+
template<class K>
|
1420
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1421
|
+
iterator find(const K& x)
|
1296
1422
|
{ return dtl::force_copy<iterator>(m_flat_tree.find(x)); }
|
1297
1423
|
|
1424
|
+
//! <b>Requires</b>: This overload is available only if
|
1425
|
+
//! key_compare::is_transparent exists.
|
1426
|
+
//!
|
1298
1427
|
//! <b>Returns</b>: A const_iterator pointing to an element with the key
|
1299
1428
|
//! equivalent to x, or end() if such an element is not found.
|
1300
1429
|
//!
|
1301
1430
|
//! <b>Complexity</b>: Logarithmic.
|
1302
|
-
|
1431
|
+
template<class K>
|
1432
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1433
|
+
const_iterator find(const K& x) const
|
1303
1434
|
{ return dtl::force_copy<const_iterator>(m_flat_tree.find(x)); }
|
1304
1435
|
|
1305
1436
|
//! <b>Returns</b>: The number of elements with key equivalent to x.
|
1306
1437
|
//!
|
1307
1438
|
//! <b>Complexity</b>: log(size())+count(k)
|
1308
|
-
|
1439
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1440
|
+
size_type count(const key_type& x) const
|
1309
1441
|
{ return static_cast<size_type>(m_flat_tree.find(x) != m_flat_tree.end()); }
|
1310
1442
|
|
1443
|
+
//! <b>Requires</b>: This overload is available only if
|
1444
|
+
//! key_compare::is_transparent exists.
|
1445
|
+
//!
|
1446
|
+
//! <b>Returns</b>: The number of elements with key equivalent to x.
|
1447
|
+
//!
|
1448
|
+
//! <b>Complexity</b>: log(size())+count(k)
|
1449
|
+
template<class K>
|
1450
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1451
|
+
size_type count(const K& x) const
|
1452
|
+
//Don't use find() != end optimization here as transparent comparators with key K might
|
1453
|
+
//return a different range than key_type (which can only return a single element range)
|
1454
|
+
{ return m_flat_tree.count(x); }
|
1455
|
+
|
1456
|
+
//! <b>Returns</b>: Returns true if there is an element with key
|
1457
|
+
//! equivalent to key in the container, otherwise false.
|
1458
|
+
//!
|
1459
|
+
//! <b>Complexity</b>: log(size()).
|
1460
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1461
|
+
bool contains(const key_type& x) const
|
1462
|
+
{ return m_flat_tree.find(x) != m_flat_tree.end(); }
|
1463
|
+
|
1464
|
+
//! <b>Requires</b>: This overload is available only if
|
1465
|
+
//! key_compare::is_transparent exists.
|
1466
|
+
//!
|
1467
|
+
//! <b>Returns</b>: Returns true if there is an element with key
|
1468
|
+
//! equivalent to key in the container, otherwise false.
|
1469
|
+
//!
|
1470
|
+
//! <b>Complexity</b>: log(size()).
|
1471
|
+
template<typename K>
|
1472
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1473
|
+
bool contains(const K& x) const
|
1474
|
+
{ return m_flat_tree.find(x) != m_flat_tree.end(); }
|
1475
|
+
|
1311
1476
|
//! <b>Returns</b>: An iterator pointing to the first element with key not less
|
1312
|
-
//! than
|
1477
|
+
//! than x, or end() if such an element is not found.
|
1313
1478
|
//!
|
1314
1479
|
//! <b>Complexity</b>: Logarithmic.
|
1315
|
-
|
1480
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1481
|
+
iterator lower_bound(const key_type& x)
|
1316
1482
|
{ return dtl::force_copy<iterator>(m_flat_tree.lower_bound(x)); }
|
1317
1483
|
|
1318
1484
|
//! <b>Returns</b>: A const iterator pointing to the first element with key not
|
1319
|
-
//! less than
|
1485
|
+
//! less than x, or end() if such an element is not found.
|
1320
1486
|
//!
|
1321
1487
|
//! <b>Complexity</b>: Logarithmic.
|
1322
|
-
|
1488
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1489
|
+
const_iterator lower_bound(const key_type& x) const
|
1323
1490
|
{ return dtl::force_copy<const_iterator>(m_flat_tree.lower_bound(x)); }
|
1324
1491
|
|
1492
|
+
//! <b>Requires</b>: This overload is available only if
|
1493
|
+
//! key_compare::is_transparent exists.
|
1494
|
+
//!
|
1325
1495
|
//! <b>Returns</b>: An iterator pointing to the first element with key not less
|
1326
1496
|
//! than x, or end() if such an element is not found.
|
1327
1497
|
//!
|
1328
1498
|
//! <b>Complexity</b>: Logarithmic.
|
1329
|
-
|
1330
|
-
|
1499
|
+
template<class K>
|
1500
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1501
|
+
iterator lower_bound(const K& x)
|
1502
|
+
{ return dtl::force_copy<iterator>(m_flat_tree.lower_bound(x)); }
|
1331
1503
|
|
1504
|
+
//! <b>Requires</b>: This overload is available only if
|
1505
|
+
//! key_compare::is_transparent exists.
|
1506
|
+
//!
|
1332
1507
|
//! <b>Returns</b>: A const iterator pointing to the first element with key not
|
1333
1508
|
//! less than x, or end() if such an element is not found.
|
1334
1509
|
//!
|
1335
1510
|
//! <b>Complexity</b>: Logarithmic.
|
1336
|
-
|
1511
|
+
template<class K>
|
1512
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1513
|
+
const_iterator lower_bound(const K& x) const
|
1514
|
+
{ return dtl::force_copy<const_iterator>(m_flat_tree.lower_bound(x)); }
|
1515
|
+
|
1516
|
+
//! <b>Returns</b>: An iterator pointing to the first element with key greater
|
1517
|
+
//! than x, or end() if such an element is not found.
|
1518
|
+
//!
|
1519
|
+
//! <b>Complexity</b>: Logarithmic.
|
1520
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1521
|
+
iterator upper_bound(const key_type& x)
|
1522
|
+
{ return dtl::force_copy<iterator>(m_flat_tree.upper_bound(x)); }
|
1523
|
+
|
1524
|
+
//! <b>Returns</b>: A const iterator pointing to the first element with key
|
1525
|
+
//! greater than x, or end() if such an element is not found.
|
1526
|
+
//!
|
1527
|
+
//! <b>Complexity</b>: Logarithmic.
|
1528
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1529
|
+
const_iterator upper_bound(const key_type& x) const
|
1530
|
+
{ return dtl::force_copy<const_iterator>(m_flat_tree.upper_bound(x)); }
|
1531
|
+
|
1532
|
+
//! <b>Requires</b>: This overload is available only if
|
1533
|
+
//! key_compare::is_transparent exists.
|
1534
|
+
//!
|
1535
|
+
//! <b>Returns</b>: An iterator pointing to the first element with key greater
|
1536
|
+
//! than x, or end() if such an element is not found.
|
1537
|
+
//!
|
1538
|
+
//! <b>Complexity</b>: Logarithmic.
|
1539
|
+
template<class K>
|
1540
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1541
|
+
iterator upper_bound(const K& x)
|
1542
|
+
{ return dtl::force_copy<iterator>(m_flat_tree.upper_bound(x)); }
|
1543
|
+
|
1544
|
+
//! <b>Requires</b>: This overload is available only if
|
1545
|
+
//! key_compare::is_transparent exists.
|
1546
|
+
//!
|
1547
|
+
//! <b>Returns</b>: A const iterator pointing to the first element with key
|
1548
|
+
//! greater than x, or end() if such an element is not found.
|
1549
|
+
//!
|
1550
|
+
//! <b>Complexity</b>: Logarithmic.
|
1551
|
+
template<class K>
|
1552
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1553
|
+
const_iterator upper_bound(const K& x) const
|
1337
1554
|
{ return dtl::force_copy<const_iterator>(m_flat_tree.upper_bound(x)); }
|
1338
1555
|
|
1339
1556
|
//! <b>Effects</b>: Equivalent to std::make_pair(this->lower_bound(k), this->upper_bound(k)).
|
1340
1557
|
//!
|
1341
1558
|
//! <b>Complexity</b>: Logarithmic.
|
1342
|
-
|
1559
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1560
|
+
std::pair<iterator,iterator> equal_range(const key_type& x)
|
1343
1561
|
{ return dtl::force_copy<std::pair<iterator,iterator> >(m_flat_tree.lower_bound_range(x)); }
|
1344
1562
|
|
1345
1563
|
//! <b>Effects</b>: Equivalent to std::make_pair(this->lower_bound(k), this->upper_bound(k)).
|
1346
1564
|
//!
|
1347
1565
|
//! <b>Complexity</b>: Logarithmic.
|
1348
|
-
|
1566
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1567
|
+
std::pair<const_iterator, const_iterator> equal_range(const key_type& x) const
|
1349
1568
|
{ return dtl::force_copy<std::pair<const_iterator,const_iterator> >(m_flat_tree.lower_bound_range(x)); }
|
1350
1569
|
|
1570
|
+
//! <b>Requires</b>: This overload is available only if
|
1571
|
+
//! key_compare::is_transparent exists.
|
1572
|
+
//!
|
1573
|
+
//! <b>Effects</b>: Equivalent to std::make_pair(this->lower_bound(k), this->upper_bound(k)).
|
1574
|
+
//!
|
1575
|
+
//! <b>Complexity</b>: Logarithmic.
|
1576
|
+
template<class K>
|
1577
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1578
|
+
std::pair<iterator,iterator> equal_range(const K& x)
|
1579
|
+
//Don't use lower_bound_range optimization here as transparent comparators with key K might
|
1580
|
+
//return a different range than key_type (which can only return a single element range)
|
1581
|
+
{ return dtl::force_copy<std::pair<iterator,iterator> >(m_flat_tree.equal_range(x)); }
|
1582
|
+
|
1583
|
+
//! <b>Requires</b>: This overload is available only if
|
1584
|
+
//! key_compare::is_transparent exists.
|
1585
|
+
//!
|
1586
|
+
//! <b>Effects</b>: Equivalent to std::make_pair(this->lower_bound(k), this->upper_bound(k)).
|
1587
|
+
//!
|
1588
|
+
//! <b>Complexity</b>: Logarithmic.
|
1589
|
+
template<class K>
|
1590
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1591
|
+
std::pair<const_iterator, const_iterator> equal_range(const K& x) const
|
1592
|
+
//Don't use lower_bound_range optimization here as transparent comparators with key K might
|
1593
|
+
//return a different range than key_type (which can only return a single element range)
|
1594
|
+
{ return dtl::force_copy<std::pair<const_iterator,const_iterator> >(m_flat_tree.equal_range(x)); }
|
1595
|
+
|
1351
1596
|
//! <b>Effects</b>: Extracts the internal sequence container.
|
1352
1597
|
//!
|
1353
1598
|
//! <b>Complexity</b>: Same as the move constructor of sequence_type, usually constant.
|
@@ -1355,7 +1600,7 @@ class flat_map
|
|
1355
1600
|
//! <b>Postcondition</b>: this->empty()
|
1356
1601
|
//!
|
1357
1602
|
//! <b>Throws</b>: If secuence_type's move constructor throws
|
1358
|
-
|
1603
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline sequence_type extract_sequence()
|
1359
1604
|
{
|
1360
1605
|
return boost::move(dtl::force<sequence_type>(m_flat_tree.get_sequence_ref()));
|
1361
1606
|
}
|
@@ -1366,7 +1611,7 @@ class flat_map
|
|
1366
1611
|
//! <b>Complexity</b>: Assuming O(1) move assignment, O(NlogN) with N = seq.size()
|
1367
1612
|
//!
|
1368
1613
|
//! <b>Throws</b>: If the comparison or the move constructor throws
|
1369
|
-
|
1614
|
+
inline void adopt_sequence(BOOST_RV_REF(sequence_type) seq)
|
1370
1615
|
{ this->m_flat_tree.adopt_sequence_unique(boost::move(dtl::force<impl_sequence_type>(seq))); }
|
1371
1616
|
|
1372
1617
|
//! <b>Requires</b>: seq shall be ordered according to this->compare()
|
@@ -1378,77 +1623,158 @@ class flat_map
|
|
1378
1623
|
//! <b>Complexity</b>: Assuming O(1) move assignment, O(1)
|
1379
1624
|
//!
|
1380
1625
|
//! <b>Throws</b>: If the move assignment throws
|
1381
|
-
|
1626
|
+
inline void adopt_sequence(ordered_unique_range_t, BOOST_RV_REF(sequence_type) seq)
|
1382
1627
|
{ this->m_flat_tree.adopt_sequence_unique(ordered_unique_range_t(), boost::move(dtl::force<impl_sequence_type>(seq))); }
|
1383
1628
|
|
1629
|
+
//! <b>Effects</b>: Returns a const view of the underlying sequence.
|
1630
|
+
//!
|
1631
|
+
//! <b>Complexity</b>: Constant
|
1632
|
+
//!
|
1633
|
+
//! <b>Throws</b>: Nothing
|
1634
|
+
inline const sequence_type & sequence() const BOOST_NOEXCEPT
|
1635
|
+
{ return dtl::force<sequence_type>(m_flat_tree.get_sequence_cref()); }
|
1636
|
+
|
1384
1637
|
//! <b>Effects</b>: Returns true if x and y are equal
|
1385
1638
|
//!
|
1386
1639
|
//! <b>Complexity</b>: Linear to the number of elements in the container.
|
1387
|
-
|
1640
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1641
|
+
friend bool operator==(const flat_map& x, const flat_map& y)
|
1388
1642
|
{ return x.size() == y.size() && ::boost::container::algo_equal(x.begin(), x.end(), y.begin()); }
|
1389
1643
|
|
1390
1644
|
//! <b>Effects</b>: Returns true if x and y are unequal
|
1391
1645
|
//!
|
1392
1646
|
//! <b>Complexity</b>: Linear to the number of elements in the container.
|
1393
|
-
|
1647
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1648
|
+
friend bool operator!=(const flat_map& x, const flat_map& y)
|
1394
1649
|
{ return !(x == y); }
|
1395
1650
|
|
1396
1651
|
//! <b>Effects</b>: Returns true if x is less than y
|
1397
1652
|
//!
|
1398
1653
|
//! <b>Complexity</b>: Linear to the number of elements in the container.
|
1399
|
-
|
1654
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1655
|
+
friend bool operator<(const flat_map& x, const flat_map& y)
|
1400
1656
|
{ return ::boost::container::algo_lexicographical_compare(x.begin(), x.end(), y.begin(), y.end()); }
|
1401
1657
|
|
1402
1658
|
//! <b>Effects</b>: Returns true if x is greater than y
|
1403
1659
|
//!
|
1404
1660
|
//! <b>Complexity</b>: Linear to the number of elements in the container.
|
1405
|
-
|
1661
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1662
|
+
friend bool operator>(const flat_map& x, const flat_map& y)
|
1406
1663
|
{ return y < x; }
|
1407
1664
|
|
1408
1665
|
//! <b>Effects</b>: Returns true if x is equal or less than y
|
1409
1666
|
//!
|
1410
1667
|
//! <b>Complexity</b>: Linear to the number of elements in the container.
|
1411
|
-
|
1668
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1669
|
+
friend bool operator<=(const flat_map& x, const flat_map& y)
|
1412
1670
|
{ return !(y < x); }
|
1413
1671
|
|
1414
1672
|
//! <b>Effects</b>: Returns true if x is equal or greater than y
|
1415
1673
|
//!
|
1416
1674
|
//! <b>Complexity</b>: Linear to the number of elements in the container.
|
1417
|
-
|
1675
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1676
|
+
friend bool operator>=(const flat_map& x, const flat_map& y)
|
1418
1677
|
{ return !(x < y); }
|
1419
1678
|
|
1420
1679
|
//! <b>Effects</b>: x.swap(y)
|
1421
1680
|
//!
|
1422
1681
|
//! <b>Complexity</b>: Constant.
|
1423
|
-
|
1682
|
+
inline friend void swap(flat_map& x, flat_map& y)
|
1683
|
+
BOOST_NOEXCEPT_IF(BOOST_NOEXCEPT(x.swap(y)))
|
1424
1684
|
{ x.swap(y); }
|
1425
1685
|
|
1426
1686
|
#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
|
1427
1687
|
private:
|
1428
1688
|
mapped_type &priv_subscript(const key_type& k)
|
1429
1689
|
{
|
1430
|
-
iterator i = lower_bound(k);
|
1690
|
+
iterator i = this->lower_bound(k);
|
1431
1691
|
// i->first is greater than or equivalent to k.
|
1432
1692
|
if (i == end() || key_comp()(k, (*i).first)){
|
1433
1693
|
dtl::value_init<mapped_type> m;
|
1434
|
-
|
1694
|
+
impl_value_type v(k, ::boost::move(m.m_t));
|
1695
|
+
i = dtl::force_copy<iterator>(this->m_flat_tree.insert_equal(::boost::move(v)));
|
1435
1696
|
}
|
1436
1697
|
return (*i).second;
|
1437
1698
|
}
|
1438
1699
|
mapped_type &priv_subscript(BOOST_RV_REF(key_type) mk)
|
1439
1700
|
{
|
1440
1701
|
key_type &k = mk;
|
1441
|
-
iterator i = lower_bound(k);
|
1702
|
+
iterator i = this->lower_bound(k);
|
1442
1703
|
// i->first is greater than or equivalent to k.
|
1443
|
-
if (i == end() || key_comp()(k, (*i).first)){
|
1704
|
+
if (i == end() || key_comp()(k, (*i).first)) {
|
1444
1705
|
dtl::value_init<mapped_type> m;
|
1445
|
-
|
1706
|
+
impl_value_type v(::boost::move(k), ::boost::move(m.m_t));
|
1707
|
+
i = dtl::force_copy<iterator>(this->m_flat_tree.insert_equal(::boost::move(v)));
|
1446
1708
|
}
|
1447
1709
|
return (*i).second;
|
1448
1710
|
}
|
1449
1711
|
#endif //#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
|
1450
1712
|
};
|
1451
1713
|
|
1714
|
+
#ifndef BOOST_CONTAINER_NO_CXX17_CTAD
|
1715
|
+
|
1716
|
+
template <typename InputIterator>
|
1717
|
+
flat_map(InputIterator, InputIterator) ->
|
1718
|
+
flat_map< it_based_non_const_first_type_t<InputIterator>
|
1719
|
+
, it_based_second_type_t<InputIterator>>;
|
1720
|
+
|
1721
|
+
template < typename InputIterator, typename AllocatorOrCompare>
|
1722
|
+
flat_map(InputIterator, InputIterator, AllocatorOrCompare const&) ->
|
1723
|
+
flat_map< it_based_non_const_first_type_t<InputIterator>
|
1724
|
+
, it_based_second_type_t<InputIterator>
|
1725
|
+
, typename dtl::if_c< // Compare
|
1726
|
+
dtl::is_allocator<AllocatorOrCompare>::value
|
1727
|
+
, std::less<it_based_non_const_first_type_t<InputIterator>>
|
1728
|
+
, AllocatorOrCompare
|
1729
|
+
>::type
|
1730
|
+
, typename dtl::if_c< // Allocator
|
1731
|
+
dtl::is_allocator<AllocatorOrCompare>::value
|
1732
|
+
, AllocatorOrCompare
|
1733
|
+
, new_allocator<std::pair<it_based_non_const_first_type_t<InputIterator>, it_based_second_type_t<InputIterator>>>
|
1734
|
+
>::type
|
1735
|
+
>;
|
1736
|
+
|
1737
|
+
template < typename InputIterator, typename Compare, typename Allocator
|
1738
|
+
, typename = dtl::require_nonallocator_t<Compare>
|
1739
|
+
, typename = dtl::require_allocator_t<Allocator>>
|
1740
|
+
flat_map(InputIterator, InputIterator, Compare const&, Allocator const&) ->
|
1741
|
+
flat_map< it_based_non_const_first_type_t<InputIterator>
|
1742
|
+
, it_based_second_type_t<InputIterator>
|
1743
|
+
, Compare
|
1744
|
+
, Allocator>;
|
1745
|
+
|
1746
|
+
template <typename InputIterator>
|
1747
|
+
flat_map(ordered_unique_range_t, InputIterator, InputIterator) ->
|
1748
|
+
flat_map< it_based_non_const_first_type_t<InputIterator>
|
1749
|
+
, it_based_second_type_t<InputIterator>>;
|
1750
|
+
|
1751
|
+
template < typename InputIterator, typename AllocatorOrCompare>
|
1752
|
+
flat_map(ordered_unique_range_t, InputIterator, InputIterator, AllocatorOrCompare const&) ->
|
1753
|
+
flat_map< it_based_non_const_first_type_t<InputIterator>
|
1754
|
+
, it_based_second_type_t<InputIterator>
|
1755
|
+
, typename dtl::if_c< // Compare
|
1756
|
+
dtl::is_allocator<AllocatorOrCompare>::value
|
1757
|
+
, std::less<it_based_non_const_first_type_t<InputIterator>>
|
1758
|
+
, AllocatorOrCompare
|
1759
|
+
>::type
|
1760
|
+
, typename dtl::if_c< // Allocator
|
1761
|
+
dtl::is_allocator<AllocatorOrCompare>::value
|
1762
|
+
, AllocatorOrCompare
|
1763
|
+
, new_allocator<std::pair<it_based_non_const_first_type_t<InputIterator>, it_based_second_type_t<InputIterator>>>
|
1764
|
+
>::type
|
1765
|
+
>;
|
1766
|
+
|
1767
|
+
template < typename InputIterator, typename Compare, typename Allocator
|
1768
|
+
, typename = dtl::require_nonallocator_t<Compare>
|
1769
|
+
, typename = dtl::require_allocator_t<Allocator>>
|
1770
|
+
flat_map(ordered_unique_range_t, InputIterator, InputIterator, Compare const&, Allocator const&) ->
|
1771
|
+
flat_map< it_based_non_const_first_type_t<InputIterator>
|
1772
|
+
, it_based_second_type_t<InputIterator>
|
1773
|
+
, Compare
|
1774
|
+
, Allocator>;
|
1775
|
+
|
1776
|
+
#endif
|
1777
|
+
|
1452
1778
|
#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
|
1453
1779
|
|
1454
1780
|
} //namespace container {
|
@@ -1458,10 +1784,10 @@ class flat_map
|
|
1458
1784
|
template <class Key, class T, class Compare, class AllocatorOrContainer>
|
1459
1785
|
struct has_trivial_destructor_after_move<boost::container::flat_map<Key, T, Compare, AllocatorOrContainer> >
|
1460
1786
|
{
|
1461
|
-
typedef typename
|
1462
|
-
|
1463
|
-
|
1464
|
-
|
1787
|
+
typedef typename boost::container::flat_map<Key, T, Compare, AllocatorOrContainer>::value_type value_t;
|
1788
|
+
typedef typename ::boost::container::dtl::container_or_allocator_rebind<AllocatorOrContainer, value_t>::type alloc_or_cont_t;
|
1789
|
+
typedef ::boost::container::dtl::flat_tree<value_t,::boost::container::dtl::select1st<Key>, Compare, alloc_or_cont_t> tree;
|
1790
|
+
BOOST_STATIC_CONSTEXPR bool value = ::boost::has_trivial_destructor_after_move<tree>::value;
|
1465
1791
|
};
|
1466
1792
|
|
1467
1793
|
namespace container {
|
@@ -1506,17 +1832,24 @@ class flat_multimap
|
|
1506
1832
|
#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
|
1507
1833
|
private:
|
1508
1834
|
BOOST_COPYABLE_AND_MOVABLE(flat_multimap)
|
1835
|
+
typedef std::pair<Key, T> std_pair_t;
|
1509
1836
|
typedef dtl::flat_tree<
|
1510
|
-
|
1837
|
+
std_pair_t,
|
1511
1838
|
dtl::select1st<Key>,
|
1512
1839
|
Compare,
|
1513
1840
|
AllocatorOrContainer> tree_t;
|
1514
1841
|
//This is the real tree stored here. It's based on a movable pair
|
1842
|
+
typedef dtl::pair<Key, T> dtl_pair_t;
|
1843
|
+
#ifdef BOOST_CONTAINER_STD_PAIR_IS_MOVABLE
|
1844
|
+
typedef std_pair_t impl_pair_t;
|
1845
|
+
#else
|
1846
|
+
typedef dtl_pair_t impl_pair_t;
|
1847
|
+
#endif
|
1515
1848
|
typedef dtl::flat_tree<
|
1516
|
-
|
1849
|
+
impl_pair_t,
|
1517
1850
|
dtl::select1st<Key>,
|
1518
1851
|
Compare,
|
1519
|
-
typename dtl::container_or_allocator_rebind<AllocatorOrContainer,
|
1852
|
+
typename dtl::container_or_allocator_rebind<AllocatorOrContainer, impl_pair_t >::type
|
1520
1853
|
> impl_tree_t;
|
1521
1854
|
impl_tree_t m_flat_tree; // flat tree representing flat_map
|
1522
1855
|
|
@@ -1541,10 +1874,10 @@ class flat_multimap
|
|
1541
1874
|
typedef typename impl_tree_t::stored_allocator_type impl_stored_allocator_type;
|
1542
1875
|
typedef typename impl_tree_t::sequence_type impl_sequence_type;
|
1543
1876
|
|
1544
|
-
|
1877
|
+
inline impl_tree_t &tree()
|
1545
1878
|
{ return m_flat_tree; }
|
1546
1879
|
|
1547
|
-
|
1880
|
+
inline const impl_tree_t &tree() const
|
1548
1881
|
{ return m_flat_tree; }
|
1549
1882
|
|
1550
1883
|
private:
|
@@ -1580,7 +1913,7 @@ class flat_multimap
|
|
1580
1913
|
typedef BOOST_CONTAINER_IMPDEF(impl_value_type) movable_value_type;
|
1581
1914
|
|
1582
1915
|
//AllocatorOrContainer::value_type must be std::pair<Key, T>
|
1583
|
-
|
1916
|
+
BOOST_CONTAINER_STATIC_ASSERT((dtl::is_same<std::pair<Key, T>, value_type>::value));
|
1584
1917
|
|
1585
1918
|
//////////////////////////////////////////////
|
1586
1919
|
//
|
@@ -1591,7 +1924,7 @@ class flat_multimap
|
|
1591
1924
|
//! <b>Effects</b>: Default constructs an empty flat_map.
|
1592
1925
|
//!
|
1593
1926
|
//! <b>Complexity</b>: Constant.
|
1594
|
-
|
1927
|
+
inline flat_multimap()
|
1595
1928
|
BOOST_NOEXCEPT_IF(dtl::is_nothrow_default_constructible<AllocatorOrContainer>::value &&
|
1596
1929
|
dtl::is_nothrow_default_constructible<Compare>::value)
|
1597
1930
|
: m_flat_tree()
|
@@ -1600,7 +1933,7 @@ class flat_multimap
|
|
1600
1933
|
//! <b>Effects</b>: Constructs an empty flat_multimap using the specified allocator.
|
1601
1934
|
//!
|
1602
1935
|
//! <b>Complexity</b>: Constant.
|
1603
|
-
|
1936
|
+
inline explicit flat_multimap(const allocator_type& a)
|
1604
1937
|
: m_flat_tree(dtl::force<const impl_allocator_type>(a))
|
1605
1938
|
{}
|
1606
1939
|
|
@@ -1608,7 +1941,7 @@ class flat_multimap
|
|
1608
1941
|
//! object .
|
1609
1942
|
//!
|
1610
1943
|
//! <b>Complexity</b>: Constant.
|
1611
|
-
|
1944
|
+
inline explicit flat_multimap(const Compare& comp)
|
1612
1945
|
: m_flat_tree(comp)
|
1613
1946
|
{}
|
1614
1947
|
|
@@ -1616,7 +1949,7 @@ class flat_multimap
|
|
1616
1949
|
//! object and allocator.
|
1617
1950
|
//!
|
1618
1951
|
//! <b>Complexity</b>: Constant.
|
1619
|
-
|
1952
|
+
inline
|
1620
1953
|
flat_multimap(const Compare& comp, const allocator_type& a)
|
1621
1954
|
: m_flat_tree(comp, dtl::force<const impl_allocator_type>(a))
|
1622
1955
|
{}
|
@@ -1627,7 +1960,7 @@ class flat_multimap
|
|
1627
1960
|
//! <b>Complexity</b>: Linear in N if the range [first ,last ) is already sorted using
|
1628
1961
|
//! the predicate and otherwise N logN, where N is last - first.
|
1629
1962
|
template <class InputIterator>
|
1630
|
-
|
1963
|
+
inline
|
1631
1964
|
flat_multimap(InputIterator first, InputIterator last)
|
1632
1965
|
: m_flat_tree(false, first, last)
|
1633
1966
|
{}
|
@@ -1638,7 +1971,7 @@ class flat_multimap
|
|
1638
1971
|
//! <b>Complexity</b>: Linear in N if the range [first ,last ) is already sorted using
|
1639
1972
|
//! the predicate and otherwise N logN, where N is last - first.
|
1640
1973
|
template <class InputIterator>
|
1641
|
-
|
1974
|
+
inline
|
1642
1975
|
flat_multimap(InputIterator first, InputIterator last, const allocator_type& a)
|
1643
1976
|
: m_flat_tree(false, first, last, dtl::force<const impl_allocator_type>(a))
|
1644
1977
|
{}
|
@@ -1649,7 +1982,7 @@ class flat_multimap
|
|
1649
1982
|
//! <b>Complexity</b>: Linear in N if the range [first ,last ) is already sorted using
|
1650
1983
|
//! the predicate and otherwise N logN, where N is last - first.
|
1651
1984
|
template <class InputIterator>
|
1652
|
-
|
1985
|
+
inline
|
1653
1986
|
flat_multimap(InputIterator first, InputIterator last, const Compare& comp)
|
1654
1987
|
: m_flat_tree(false, first, last, comp)
|
1655
1988
|
{}
|
@@ -1660,7 +1993,7 @@ class flat_multimap
|
|
1660
1993
|
//! <b>Complexity</b>: Linear in N if the range [first ,last ) is already sorted using
|
1661
1994
|
//! the predicate and otherwise N logN, where N is last - first.
|
1662
1995
|
template <class InputIterator>
|
1663
|
-
|
1996
|
+
inline
|
1664
1997
|
flat_multimap(InputIterator first, InputIterator last, const Compare& comp, const allocator_type& a)
|
1665
1998
|
: m_flat_tree(false, first, last, comp, dtl::force<const impl_allocator_type>(a))
|
1666
1999
|
{}
|
@@ -1675,7 +2008,7 @@ class flat_multimap
|
|
1675
2008
|
//!
|
1676
2009
|
//! <b>Note</b>: Non-standard extension.
|
1677
2010
|
template <class InputIterator>
|
1678
|
-
|
2011
|
+
inline
|
1679
2012
|
flat_multimap(ordered_range_t, InputIterator first, InputIterator last)
|
1680
2013
|
: m_flat_tree(ordered_range, first, last)
|
1681
2014
|
{}
|
@@ -1690,7 +2023,7 @@ class flat_multimap
|
|
1690
2023
|
//!
|
1691
2024
|
//! <b>Note</b>: Non-standard extension.
|
1692
2025
|
template <class InputIterator>
|
1693
|
-
|
2026
|
+
inline
|
1694
2027
|
flat_multimap(ordered_range_t, InputIterator first, InputIterator last, const Compare& comp)
|
1695
2028
|
: m_flat_tree(ordered_range, first, last, comp)
|
1696
2029
|
{}
|
@@ -1705,18 +2038,33 @@ class flat_multimap
|
|
1705
2038
|
//!
|
1706
2039
|
//! <b>Note</b>: Non-standard extension.
|
1707
2040
|
template <class InputIterator>
|
1708
|
-
|
2041
|
+
inline
|
1709
2042
|
flat_multimap(ordered_range_t, InputIterator first, InputIterator last, const Compare& comp, const allocator_type& a)
|
1710
2043
|
: m_flat_tree(ordered_range, first, last, comp, a)
|
1711
2044
|
{}
|
1712
2045
|
|
2046
|
+
//! <b>Effects</b>: Constructs an empty flat_multimap using the specified comparison object and
|
2047
|
+
//! inserts elements from the ordered range [first ,last). This function
|
2048
|
+
//! is more efficient than the normal range creation for ordered ranges.
|
2049
|
+
//!
|
2050
|
+
//! <b>Requires</b>: [first ,last) must be ordered according to the predicate.
|
2051
|
+
//!
|
2052
|
+
//! <b>Complexity</b>: Linear in N.
|
2053
|
+
//!
|
2054
|
+
//! <b>Note</b>: Non-standard extension.
|
2055
|
+
template <class InputIterator>
|
2056
|
+
inline
|
2057
|
+
flat_multimap(ordered_range_t, InputIterator first, InputIterator last, const allocator_type &a)
|
2058
|
+
: m_flat_tree(ordered_range, first, last, Compare(), a)
|
2059
|
+
{}
|
2060
|
+
|
1713
2061
|
#if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
|
1714
2062
|
//! <b>Effects</b>: Constructs an empty flat_map and
|
1715
2063
|
//! inserts elements from the range [il.begin(), il.end()).
|
1716
2064
|
//!
|
1717
2065
|
//! <b>Complexity</b>: Linear in N if the range [il.begin(), il.end()) is already sorted using
|
1718
2066
|
//! the predicate and otherwise N logN, where N is last - first.
|
1719
|
-
|
2067
|
+
inline
|
1720
2068
|
flat_multimap(std::initializer_list<value_type> il)
|
1721
2069
|
: m_flat_tree( false
|
1722
2070
|
, dtl::force<impl_initializer_list>(il).begin()
|
@@ -1728,7 +2076,7 @@ class flat_multimap
|
|
1728
2076
|
//!
|
1729
2077
|
//! <b>Complexity</b>: Linear in N if the range [il.begin(), il.end()) is already sorted using
|
1730
2078
|
//! the predicate and otherwise N logN, where N is last - first.
|
1731
|
-
|
2079
|
+
inline
|
1732
2080
|
flat_multimap(std::initializer_list<value_type> il, const allocator_type& a)
|
1733
2081
|
: m_flat_tree(false
|
1734
2082
|
, dtl::force<impl_initializer_list>(il).begin()
|
@@ -1741,7 +2089,7 @@ class flat_multimap
|
|
1741
2089
|
//!
|
1742
2090
|
//! <b>Complexity</b>: Linear in N if the range [il.begin(), il.end()) is already sorted using
|
1743
2091
|
//! the predicate and otherwise N logN, where N is last - first.
|
1744
|
-
|
2092
|
+
inline
|
1745
2093
|
flat_multimap(std::initializer_list<value_type> il, const Compare& comp)
|
1746
2094
|
: m_flat_tree(false
|
1747
2095
|
, dtl::force<impl_initializer_list>(il).begin()
|
@@ -1753,7 +2101,7 @@ class flat_multimap
|
|
1753
2101
|
//!
|
1754
2102
|
//! <b>Complexity</b>: Linear in N if the range [il.begin(), il.end()) is already sorted using
|
1755
2103
|
//! the predicate and otherwise N logN, where N is last - first.
|
1756
|
-
|
2104
|
+
inline
|
1757
2105
|
flat_multimap(std::initializer_list<value_type> il, const Compare& comp, const allocator_type& a)
|
1758
2106
|
: m_flat_tree( false
|
1759
2107
|
, dtl::force<impl_initializer_list>(il).begin()
|
@@ -1770,7 +2118,7 @@ class flat_multimap
|
|
1770
2118
|
//! <b>Complexity</b>: Linear in N.
|
1771
2119
|
//!
|
1772
2120
|
//! <b>Note</b>: Non-standard extension.
|
1773
|
-
|
2121
|
+
inline
|
1774
2122
|
flat_multimap(ordered_range_t, std::initializer_list<value_type> il)
|
1775
2123
|
: m_flat_tree( ordered_range
|
1776
2124
|
, dtl::force<impl_initializer_list>(il).begin()
|
@@ -1786,7 +2134,7 @@ class flat_multimap
|
|
1786
2134
|
//! <b>Complexity</b>: Linear in N.
|
1787
2135
|
//!
|
1788
2136
|
//! <b>Note</b>: Non-standard extension.
|
1789
|
-
|
2137
|
+
inline
|
1790
2138
|
flat_multimap(ordered_range_t, std::initializer_list<value_type> il, const Compare& comp)
|
1791
2139
|
: m_flat_tree( ordered_range
|
1792
2140
|
, dtl::force<impl_initializer_list>(il).begin()
|
@@ -1802,7 +2150,7 @@ class flat_multimap
|
|
1802
2150
|
//! <b>Complexity</b>: Linear in N.
|
1803
2151
|
//!
|
1804
2152
|
//! <b>Note</b>: Non-standard extension.
|
1805
|
-
|
2153
|
+
inline
|
1806
2154
|
flat_multimap(ordered_range_t, std::initializer_list<value_type> il, const Compare& comp, const allocator_type& a)
|
1807
2155
|
: m_flat_tree( ordered_range
|
1808
2156
|
, dtl::force<impl_initializer_list>(il).begin()
|
@@ -1814,7 +2162,7 @@ class flat_multimap
|
|
1814
2162
|
//! <b>Effects</b>: Copy constructs a flat_multimap.
|
1815
2163
|
//!
|
1816
2164
|
//! <b>Complexity</b>: Linear in x.size().
|
1817
|
-
|
2165
|
+
inline
|
1818
2166
|
flat_multimap(const flat_multimap& x)
|
1819
2167
|
: m_flat_tree(x.m_flat_tree)
|
1820
2168
|
{}
|
@@ -1824,7 +2172,7 @@ class flat_multimap
|
|
1824
2172
|
//! <b>Complexity</b>: Constant.
|
1825
2173
|
//!
|
1826
2174
|
//! <b>Postcondition</b>: x is emptied.
|
1827
|
-
|
2175
|
+
inline
|
1828
2176
|
flat_multimap(BOOST_RV_REF(flat_multimap) x)
|
1829
2177
|
BOOST_NOEXCEPT_IF(boost::container::dtl::is_nothrow_move_constructible<Compare>::value)
|
1830
2178
|
: m_flat_tree(boost::move(x.m_flat_tree))
|
@@ -1833,7 +2181,7 @@ class flat_multimap
|
|
1833
2181
|
//! <b>Effects</b>: Copy constructs a flat_multimap using the specified allocator.
|
1834
2182
|
//!
|
1835
2183
|
//! <b>Complexity</b>: Linear in x.size().
|
1836
|
-
|
2184
|
+
inline
|
1837
2185
|
flat_multimap(const flat_multimap& x, const allocator_type &a)
|
1838
2186
|
: m_flat_tree(x.m_flat_tree, dtl::force<const impl_allocator_type>(a))
|
1839
2187
|
{}
|
@@ -1842,7 +2190,7 @@ class flat_multimap
|
|
1842
2190
|
//! Constructs *this using x's resources.
|
1843
2191
|
//!
|
1844
2192
|
//! <b>Complexity</b>: Constant if a == x.get_allocator(), linear otherwise.
|
1845
|
-
|
2193
|
+
inline
|
1846
2194
|
flat_multimap(BOOST_RV_REF(flat_multimap) x, const allocator_type &a)
|
1847
2195
|
: m_flat_tree(boost::move(x.m_flat_tree), dtl::force<const impl_allocator_type>(a))
|
1848
2196
|
{}
|
@@ -1850,14 +2198,14 @@ class flat_multimap
|
|
1850
2198
|
//! <b>Effects</b>: Makes *this a copy of x.
|
1851
2199
|
//!
|
1852
2200
|
//! <b>Complexity</b>: Linear in x.size().
|
1853
|
-
|
2201
|
+
inline
|
1854
2202
|
flat_multimap& operator=(BOOST_COPY_ASSIGN_REF(flat_multimap) x)
|
1855
2203
|
{ m_flat_tree = x.m_flat_tree; return *this; }
|
1856
2204
|
|
1857
2205
|
//! <b>Effects</b>: this->swap(x.get()).
|
1858
2206
|
//!
|
1859
2207
|
//! <b>Complexity</b>: Constant.
|
1860
|
-
|
2208
|
+
inline
|
1861
2209
|
flat_multimap& operator=(BOOST_RV_REF(flat_multimap) x)
|
1862
2210
|
BOOST_NOEXCEPT_IF( (allocator_traits_type::propagate_on_container_move_assignment::value ||
|
1863
2211
|
allocator_traits_type::is_always_equal::value) &&
|
@@ -1868,7 +2216,7 @@ class flat_multimap
|
|
1868
2216
|
//! <b>Effects</b>: Assign content of il to *this
|
1869
2217
|
//!
|
1870
2218
|
//! <b>Complexity</b>: Linear in il.size().
|
1871
|
-
|
2219
|
+
inline
|
1872
2220
|
flat_multimap& operator=(std::initializer_list<value_type> il)
|
1873
2221
|
{
|
1874
2222
|
this->clear();
|
@@ -1881,7 +2229,7 @@ class flat_multimap
|
|
1881
2229
|
//! was passed to the object's constructor.
|
1882
2230
|
//!
|
1883
2231
|
//! <b>Complexity</b>: Constant.
|
1884
|
-
|
2232
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1885
2233
|
allocator_type get_allocator() const BOOST_NOEXCEPT_OR_NOTHROW
|
1886
2234
|
{ return dtl::force_copy<allocator_type>(m_flat_tree.get_allocator()); }
|
1887
2235
|
|
@@ -1892,7 +2240,7 @@ class flat_multimap
|
|
1892
2240
|
//! <b>Complexity</b>: Constant.
|
1893
2241
|
//!
|
1894
2242
|
//! <b>Note</b>: Non-standard extension.
|
1895
|
-
|
2243
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1896
2244
|
stored_allocator_type &get_stored_allocator() BOOST_NOEXCEPT_OR_NOTHROW
|
1897
2245
|
{ return dtl::force<stored_allocator_type>(m_flat_tree.get_stored_allocator()); }
|
1898
2246
|
|
@@ -1903,7 +2251,7 @@ class flat_multimap
|
|
1903
2251
|
//! <b>Complexity</b>: Constant.
|
1904
2252
|
//!
|
1905
2253
|
//! <b>Note</b>: Non-standard extension.
|
1906
|
-
|
2254
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1907
2255
|
const stored_allocator_type &get_stored_allocator() const BOOST_NOEXCEPT_OR_NOTHROW
|
1908
2256
|
{ return dtl::force<const stored_allocator_type>(m_flat_tree.get_stored_allocator()); }
|
1909
2257
|
|
@@ -1918,7 +2266,7 @@ class flat_multimap
|
|
1918
2266
|
//! <b>Throws</b>: Nothing.
|
1919
2267
|
//!
|
1920
2268
|
//! <b>Complexity</b>: Constant.
|
1921
|
-
|
2269
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1922
2270
|
iterator begin() BOOST_NOEXCEPT_OR_NOTHROW
|
1923
2271
|
{ return dtl::force_copy<iterator>(m_flat_tree.begin()); }
|
1924
2272
|
|
@@ -1927,7 +2275,7 @@ class flat_multimap
|
|
1927
2275
|
//! <b>Throws</b>: Nothing.
|
1928
2276
|
//!
|
1929
2277
|
//! <b>Complexity</b>: Constant.
|
1930
|
-
|
2278
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1931
2279
|
const_iterator begin() const BOOST_NOEXCEPT_OR_NOTHROW
|
1932
2280
|
{ return dtl::force_copy<const_iterator>(m_flat_tree.begin()); }
|
1933
2281
|
|
@@ -1936,7 +2284,7 @@ class flat_multimap
|
|
1936
2284
|
//! <b>Throws</b>: Nothing.
|
1937
2285
|
//!
|
1938
2286
|
//! <b>Complexity</b>: Constant.
|
1939
|
-
|
2287
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1940
2288
|
iterator end() BOOST_NOEXCEPT_OR_NOTHROW
|
1941
2289
|
{ return dtl::force_copy<iterator>(m_flat_tree.end()); }
|
1942
2290
|
|
@@ -1945,7 +2293,7 @@ class flat_multimap
|
|
1945
2293
|
//! <b>Throws</b>: Nothing.
|
1946
2294
|
//!
|
1947
2295
|
//! <b>Complexity</b>: Constant.
|
1948
|
-
|
2296
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1949
2297
|
const_iterator end() const BOOST_NOEXCEPT_OR_NOTHROW
|
1950
2298
|
{ return dtl::force_copy<const_iterator>(m_flat_tree.end()); }
|
1951
2299
|
|
@@ -1955,7 +2303,7 @@ class flat_multimap
|
|
1955
2303
|
//! <b>Throws</b>: Nothing.
|
1956
2304
|
//!
|
1957
2305
|
//! <b>Complexity</b>: Constant.
|
1958
|
-
|
2306
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1959
2307
|
reverse_iterator rbegin() BOOST_NOEXCEPT_OR_NOTHROW
|
1960
2308
|
{ return dtl::force_copy<reverse_iterator>(m_flat_tree.rbegin()); }
|
1961
2309
|
|
@@ -1965,7 +2313,7 @@ class flat_multimap
|
|
1965
2313
|
//! <b>Throws</b>: Nothing.
|
1966
2314
|
//!
|
1967
2315
|
//! <b>Complexity</b>: Constant.
|
1968
|
-
|
2316
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1969
2317
|
const_reverse_iterator rbegin() const BOOST_NOEXCEPT_OR_NOTHROW
|
1970
2318
|
{ return dtl::force_copy<const_reverse_iterator>(m_flat_tree.rbegin()); }
|
1971
2319
|
|
@@ -1975,7 +2323,7 @@ class flat_multimap
|
|
1975
2323
|
//! <b>Throws</b>: Nothing.
|
1976
2324
|
//!
|
1977
2325
|
//! <b>Complexity</b>: Constant.
|
1978
|
-
|
2326
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1979
2327
|
reverse_iterator rend() BOOST_NOEXCEPT_OR_NOTHROW
|
1980
2328
|
{ return dtl::force_copy<reverse_iterator>(m_flat_tree.rend()); }
|
1981
2329
|
|
@@ -1985,7 +2333,7 @@ class flat_multimap
|
|
1985
2333
|
//! <b>Throws</b>: Nothing.
|
1986
2334
|
//!
|
1987
2335
|
//! <b>Complexity</b>: Constant.
|
1988
|
-
|
2336
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1989
2337
|
const_reverse_iterator rend() const BOOST_NOEXCEPT_OR_NOTHROW
|
1990
2338
|
{ return dtl::force_copy<const_reverse_iterator>(m_flat_tree.rend()); }
|
1991
2339
|
|
@@ -1994,7 +2342,7 @@ class flat_multimap
|
|
1994
2342
|
//! <b>Throws</b>: Nothing.
|
1995
2343
|
//!
|
1996
2344
|
//! <b>Complexity</b>: Constant.
|
1997
|
-
|
2345
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
1998
2346
|
const_iterator cbegin() const BOOST_NOEXCEPT_OR_NOTHROW
|
1999
2347
|
{ return dtl::force_copy<const_iterator>(m_flat_tree.cbegin()); }
|
2000
2348
|
|
@@ -2003,7 +2351,7 @@ class flat_multimap
|
|
2003
2351
|
//! <b>Throws</b>: Nothing.
|
2004
2352
|
//!
|
2005
2353
|
//! <b>Complexity</b>: Constant.
|
2006
|
-
|
2354
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2007
2355
|
const_iterator cend() const BOOST_NOEXCEPT_OR_NOTHROW
|
2008
2356
|
{ return dtl::force_copy<const_iterator>(m_flat_tree.cend()); }
|
2009
2357
|
|
@@ -2013,7 +2361,7 @@ class flat_multimap
|
|
2013
2361
|
//! <b>Throws</b>: Nothing.
|
2014
2362
|
//!
|
2015
2363
|
//! <b>Complexity</b>: Constant.
|
2016
|
-
|
2364
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2017
2365
|
const_reverse_iterator crbegin() const BOOST_NOEXCEPT_OR_NOTHROW
|
2018
2366
|
{ return dtl::force_copy<const_reverse_iterator>(m_flat_tree.crbegin()); }
|
2019
2367
|
|
@@ -2023,7 +2371,7 @@ class flat_multimap
|
|
2023
2371
|
//! <b>Throws</b>: Nothing.
|
2024
2372
|
//!
|
2025
2373
|
//! <b>Complexity</b>: Constant.
|
2026
|
-
|
2374
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2027
2375
|
const_reverse_iterator crend() const BOOST_NOEXCEPT_OR_NOTHROW
|
2028
2376
|
{ return dtl::force_copy<const_reverse_iterator>(m_flat_tree.crend()); }
|
2029
2377
|
|
@@ -2038,7 +2386,7 @@ class flat_multimap
|
|
2038
2386
|
//! <b>Throws</b>: Nothing.
|
2039
2387
|
//!
|
2040
2388
|
//! <b>Complexity</b>: Constant.
|
2041
|
-
|
2389
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2042
2390
|
bool empty() const BOOST_NOEXCEPT_OR_NOTHROW
|
2043
2391
|
{ return m_flat_tree.empty(); }
|
2044
2392
|
|
@@ -2047,7 +2395,7 @@ class flat_multimap
|
|
2047
2395
|
//! <b>Throws</b>: Nothing.
|
2048
2396
|
//!
|
2049
2397
|
//! <b>Complexity</b>: Constant.
|
2050
|
-
|
2398
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2051
2399
|
size_type size() const BOOST_NOEXCEPT_OR_NOTHROW
|
2052
2400
|
{ return m_flat_tree.size(); }
|
2053
2401
|
|
@@ -2056,7 +2404,7 @@ class flat_multimap
|
|
2056
2404
|
//! <b>Throws</b>: Nothing.
|
2057
2405
|
//!
|
2058
2406
|
//! <b>Complexity</b>: Constant.
|
2059
|
-
|
2407
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2060
2408
|
size_type max_size() const BOOST_NOEXCEPT_OR_NOTHROW
|
2061
2409
|
{ return m_flat_tree.max_size(); }
|
2062
2410
|
|
@@ -2066,7 +2414,7 @@ class flat_multimap
|
|
2066
2414
|
//! <b>Throws</b>: Nothing.
|
2067
2415
|
//!
|
2068
2416
|
//! <b>Complexity</b>: Constant.
|
2069
|
-
|
2417
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2070
2418
|
size_type capacity() const BOOST_NOEXCEPT_OR_NOTHROW
|
2071
2419
|
{ return m_flat_tree.capacity(); }
|
2072
2420
|
|
@@ -2080,7 +2428,7 @@ class flat_multimap
|
|
2080
2428
|
//!
|
2081
2429
|
//! <b>Note</b>: If capacity() is less than "cnt", iterators and references to
|
2082
2430
|
//! to values might be invalidated.
|
2083
|
-
|
2431
|
+
inline
|
2084
2432
|
void reserve(size_type cnt)
|
2085
2433
|
{ m_flat_tree.reserve(cnt); }
|
2086
2434
|
|
@@ -2090,27 +2438,27 @@ class flat_multimap
|
|
2090
2438
|
//! <b>Throws</b>: If memory allocation throws, or T's copy constructor throws.
|
2091
2439
|
//!
|
2092
2440
|
//! <b>Complexity</b>: Linear to size().
|
2093
|
-
|
2441
|
+
inline
|
2094
2442
|
void shrink_to_fit()
|
2095
2443
|
{ m_flat_tree.shrink_to_fit(); }
|
2096
2444
|
|
2097
2445
|
//! @copydoc ::boost::container::flat_set::nth(size_type)
|
2098
|
-
|
2446
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2099
2447
|
iterator nth(size_type n) BOOST_NOEXCEPT_OR_NOTHROW
|
2100
2448
|
{ return dtl::force_copy<iterator>(m_flat_tree.nth(n)); }
|
2101
2449
|
|
2102
2450
|
//! @copydoc ::boost::container::flat_set::nth(size_type) const
|
2103
|
-
|
2451
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2104
2452
|
const_iterator nth(size_type n) const BOOST_NOEXCEPT_OR_NOTHROW
|
2105
|
-
{ return dtl::force_copy<
|
2453
|
+
{ return dtl::force_copy<const_iterator>(m_flat_tree.nth(n)); }
|
2106
2454
|
|
2107
2455
|
//! @copydoc ::boost::container::flat_set::index_of(iterator)
|
2108
|
-
|
2456
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2109
2457
|
size_type index_of(iterator p) BOOST_NOEXCEPT_OR_NOTHROW
|
2110
2458
|
{ return m_flat_tree.index_of(dtl::force_copy<impl_iterator>(p)); }
|
2111
2459
|
|
2112
2460
|
//! @copydoc ::boost::container::flat_set::index_of(const_iterator) const
|
2113
|
-
|
2461
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2114
2462
|
size_type index_of(const_iterator p) const BOOST_NOEXCEPT_OR_NOTHROW
|
2115
2463
|
{ return m_flat_tree.index_of(dtl::force_copy<impl_const_iterator>(p)); }
|
2116
2464
|
|
@@ -2125,7 +2473,7 @@ class flat_multimap
|
|
2125
2473
|
//!
|
2126
2474
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
2127
2475
|
template <class... Args>
|
2128
|
-
|
2476
|
+
inline
|
2129
2477
|
iterator emplace(BOOST_FWD_REF(Args)... args)
|
2130
2478
|
{ return dtl::force_copy<iterator>(m_flat_tree.emplace_equal(boost::forward<Args>(args)...)); }
|
2131
2479
|
|
@@ -2142,7 +2490,7 @@ class flat_multimap
|
|
2142
2490
|
//!
|
2143
2491
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
2144
2492
|
template <class... Args>
|
2145
|
-
|
2493
|
+
inline
|
2146
2494
|
iterator emplace_hint(const_iterator hint, BOOST_FWD_REF(Args)... args)
|
2147
2495
|
{
|
2148
2496
|
return dtl::force_copy<iterator>(m_flat_tree.emplace_hint_equal
|
@@ -2153,11 +2501,11 @@ class flat_multimap
|
|
2153
2501
|
|
2154
2502
|
#define BOOST_CONTAINER_FLAT_MULTIMAP_EMPLACE_CODE(N) \
|
2155
2503
|
BOOST_MOVE_TMPL_LT##N BOOST_MOVE_CLASS##N BOOST_MOVE_GT##N \
|
2156
|
-
|
2504
|
+
inline iterator emplace(BOOST_MOVE_UREF##N)\
|
2157
2505
|
{ return dtl::force_copy<iterator>(m_flat_tree.emplace_equal(BOOST_MOVE_FWD##N)); }\
|
2158
2506
|
\
|
2159
2507
|
BOOST_MOVE_TMPL_LT##N BOOST_MOVE_CLASS##N BOOST_MOVE_GT##N \
|
2160
|
-
|
2508
|
+
inline iterator emplace_hint(const_iterator hint BOOST_MOVE_I##N BOOST_MOVE_UREF##N)\
|
2161
2509
|
{\
|
2162
2510
|
return dtl::force_copy<iterator>(m_flat_tree.emplace_hint_equal\
|
2163
2511
|
(dtl::force_copy<impl_const_iterator>(hint) BOOST_MOVE_I##N BOOST_MOVE_FWD##N));\
|
@@ -2175,31 +2523,26 @@ class flat_multimap
|
|
2175
2523
|
//! to the elements with bigger keys than x.
|
2176
2524
|
//!
|
2177
2525
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
2178
|
-
|
2526
|
+
inline iterator insert(const value_type& x)
|
2179
2527
|
{
|
2180
2528
|
return dtl::force_copy<iterator>(
|
2181
2529
|
m_flat_tree.insert_equal(dtl::force<const impl_value_type>(x)));
|
2182
2530
|
}
|
2183
2531
|
|
2184
|
-
//! <b>Effects</b>: Inserts a new value
|
2185
|
-
//! the iterator pointing to the newly inserted element.
|
2186
|
-
//!
|
2187
|
-
//! <b>Complexity</b>: Logarithmic search time plus linear insertion
|
2188
|
-
//! to the elements with bigger keys than x.
|
2189
|
-
//!
|
2190
|
-
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
2191
|
-
BOOST_CONTAINER_FORCEINLINE iterator insert(BOOST_RV_REF(value_type) x)
|
2192
|
-
{ return dtl::force_copy<iterator>(m_flat_tree.insert_equal(boost::move(x))); }
|
2193
|
-
|
2194
|
-
//! <b>Effects</b>: Inserts a new value move-constructed from x and returns
|
2532
|
+
//! <b>Effects</b>: Inserts a new value constructed from x and returns
|
2195
2533
|
//! the iterator pointing to the newly inserted element.
|
2196
2534
|
//!
|
2197
2535
|
//! <b>Complexity</b>: Logarithmic search time plus linear insertion
|
2198
2536
|
//! to the elements with bigger keys than x.
|
2199
2537
|
//!
|
2200
2538
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
2201
|
-
|
2202
|
-
|
2539
|
+
template<class Pair>
|
2540
|
+
inline BOOST_CONTAINER_DOC1ST
|
2541
|
+
( iterator
|
2542
|
+
, typename dtl::enable_if_c<dtl::is_convertible<Pair BOOST_MOVE_I dtl_pair_t>::value
|
2543
|
+
BOOST_MOVE_I iterator >::type)
|
2544
|
+
insert(BOOST_FWD_REF(Pair) x)
|
2545
|
+
{ return dtl::force_copy<iterator>(m_flat_tree.emplace_equal(boost::forward<Pair>(x))); }
|
2203
2546
|
|
2204
2547
|
//! <b>Effects</b>: Inserts a copy of x in the container.
|
2205
2548
|
//! p is a hint pointing to where the insert should start to search.
|
@@ -2212,32 +2555,14 @@ class flat_multimap
|
|
2212
2555
|
//! to the elements with bigger keys than x.
|
2213
2556
|
//!
|
2214
2557
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
2215
|
-
|
2558
|
+
inline iterator insert(const_iterator p, const value_type& x)
|
2216
2559
|
{
|
2217
2560
|
return dtl::force_copy<iterator>
|
2218
2561
|
(m_flat_tree.insert_equal( dtl::force_copy<impl_const_iterator>(p)
|
2219
2562
|
, dtl::force<const impl_value_type>(x)));
|
2220
2563
|
}
|
2221
2564
|
|
2222
|
-
//! <b>Effects</b>: Inserts a value
|
2223
|
-
//! p is a hint pointing to where the insert should start to search.
|
2224
|
-
//!
|
2225
|
-
//! <b>Returns</b>: An iterator pointing to the element with key equivalent
|
2226
|
-
//! to the key of x.
|
2227
|
-
//!
|
2228
|
-
//! <b>Complexity</b>: Logarithmic search time (constant time if the value
|
2229
|
-
//! is to be inserted before p) plus linear insertion
|
2230
|
-
//! to the elements with bigger keys than x.
|
2231
|
-
//!
|
2232
|
-
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
2233
|
-
BOOST_CONTAINER_FORCEINLINE iterator insert(const_iterator p, BOOST_RV_REF(value_type) x)
|
2234
|
-
{
|
2235
|
-
return dtl::force_copy<iterator>
|
2236
|
-
(m_flat_tree.insert_equal(dtl::force_copy<impl_const_iterator>(p)
|
2237
|
-
, boost::move(x)));
|
2238
|
-
}
|
2239
|
-
|
2240
|
-
//! <b>Effects</b>: Inserts a value move constructed from x in the container.
|
2565
|
+
//! <b>Effects</b>: Inserts a value constructed from x in the container.
|
2241
2566
|
//! p is a hint pointing to where the insert should start to search.
|
2242
2567
|
//!
|
2243
2568
|
//! <b>Returns</b>: An iterator pointing to the element with key equivalent
|
@@ -2248,10 +2573,15 @@ class flat_multimap
|
|
2248
2573
|
//! to the elements with bigger keys than x.
|
2249
2574
|
//!
|
2250
2575
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
2251
|
-
|
2576
|
+
template<class Pair>
|
2577
|
+
inline BOOST_CONTAINER_DOC1ST
|
2578
|
+
( iterator
|
2579
|
+
, typename dtl::enable_if_c<dtl::is_convertible<Pair BOOST_MOVE_I dtl_pair_t>::value
|
2580
|
+
BOOST_MOVE_I iterator>::type)
|
2581
|
+
insert(const_iterator p, BOOST_FWD_REF(Pair) x)
|
2252
2582
|
{
|
2253
2583
|
return dtl::force_copy<iterator>(
|
2254
|
-
m_flat_tree.
|
2584
|
+
m_flat_tree.emplace_hint_equal(dtl::force_copy<impl_const_iterator>(p), boost::forward<Pair>(x)));
|
2255
2585
|
}
|
2256
2586
|
|
2257
2587
|
//! <b>Requires</b>: first, last are not iterators into *this.
|
@@ -2262,7 +2592,7 @@ class flat_multimap
|
|
2262
2592
|
//!
|
2263
2593
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
2264
2594
|
template <class InputIterator>
|
2265
|
-
|
2595
|
+
inline void insert(InputIterator first, InputIterator last)
|
2266
2596
|
{ m_flat_tree.insert_equal(first, last); }
|
2267
2597
|
|
2268
2598
|
//! <b>Requires</b>: first, last are not iterators into *this.
|
@@ -2279,7 +2609,7 @@ class flat_multimap
|
|
2279
2609
|
//!
|
2280
2610
|
//! <b>Note</b>: Non-standard extension.
|
2281
2611
|
template <class InputIterator>
|
2282
|
-
|
2612
|
+
inline void insert(ordered_range_t, InputIterator first, InputIterator last)
|
2283
2613
|
{ m_flat_tree.insert_equal(ordered_range, first, last); }
|
2284
2614
|
|
2285
2615
|
#if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
|
@@ -2288,7 +2618,7 @@ class flat_multimap
|
|
2288
2618
|
//! <b>Complexity</b>: N log(N).
|
2289
2619
|
//!
|
2290
2620
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
2291
|
-
|
2621
|
+
inline void insert(std::initializer_list<value_type> il)
|
2292
2622
|
{
|
2293
2623
|
m_flat_tree.insert_equal( dtl::force<impl_initializer_list>(il).begin()
|
2294
2624
|
, dtl::force<impl_initializer_list>(il).end());
|
@@ -2305,7 +2635,7 @@ class flat_multimap
|
|
2305
2635
|
//! <b>Note</b>: If an element is inserted it might invalidate elements.
|
2306
2636
|
//!
|
2307
2637
|
//! <b>Note</b>: Non-standard extension.
|
2308
|
-
|
2638
|
+
inline void insert(ordered_range_t, std::initializer_list<value_type> il)
|
2309
2639
|
{
|
2310
2640
|
m_flat_tree.insert_equal( ordered_range
|
2311
2641
|
, dtl::force<impl_initializer_list>(il).begin()
|
@@ -2315,34 +2645,29 @@ class flat_multimap
|
|
2315
2645
|
|
2316
2646
|
//! <b>Requires</b>: this->get_allocator() == source.get_allocator().
|
2317
2647
|
//!
|
2318
|
-
//! <b>Effects</b>:
|
2648
|
+
//! <b>Effects</b>: Move-inserts each element from source into *this a using
|
2319
2649
|
//! the comparison object of *this.
|
2320
|
-
//!
|
2321
|
-
//! <b>Postcondition</b>: Pointers and references to the transferred elements of source refer
|
2322
|
-
//! to those same elements but as members of *this. Iterators referring to the transferred
|
2323
|
-
//! elements will continue to refer to their elements, but they now behave as iterators into *this,
|
2324
|
-
//! not into source.
|
2325
2650
|
//!
|
2326
|
-
//! <b>
|
2651
|
+
//! <b>Complexity</b>: Linear in this->size() + source.size().
|
2327
2652
|
//!
|
2328
|
-
//! <b>
|
2653
|
+
//! <b>Note</b>: Invalidates all iterators and references.
|
2329
2654
|
template<class C2>
|
2330
|
-
|
2655
|
+
inline void merge(flat_multimap<Key, T, C2, AllocatorOrContainer>& source)
|
2331
2656
|
{ m_flat_tree.merge_equal(source.tree()); }
|
2332
2657
|
|
2333
2658
|
//! @copydoc ::boost::container::flat_multimap::merge(flat_multimap<Key, T, C2, AllocatorOrContainer>&)
|
2334
2659
|
template<class C2>
|
2335
|
-
|
2660
|
+
inline void merge(BOOST_RV_REF_BEG flat_multimap<Key, T, C2, AllocatorOrContainer> BOOST_RV_REF_END source)
|
2336
2661
|
{ return this->merge(static_cast<flat_multimap<Key, T, C2, AllocatorOrContainer>&>(source)); }
|
2337
2662
|
|
2338
2663
|
//! @copydoc ::boost::container::flat_multimap::merge(flat_multimap<Key, T, C2, AllocatorOrContainer>&)
|
2339
2664
|
template<class C2>
|
2340
|
-
|
2665
|
+
inline void merge(flat_map<Key, T, C2, AllocatorOrContainer>& source)
|
2341
2666
|
{ m_flat_tree.merge_equal(source.tree()); }
|
2342
2667
|
|
2343
2668
|
//! @copydoc ::boost::container::flat_multimap::merge(flat_map<Key, T, C2, AllocatorOrContainer>&)
|
2344
2669
|
template<class C2>
|
2345
|
-
|
2670
|
+
inline void merge(BOOST_RV_REF_BEG flat_map<Key, T, C2, AllocatorOrContainer> BOOST_RV_REF_END source)
|
2346
2671
|
{ return this->merge(static_cast<flat_map<Key, T, C2, AllocatorOrContainer>&>(source)); }
|
2347
2672
|
|
2348
2673
|
//! <b>Effects</b>: Erases the element pointed to by p.
|
@@ -2355,7 +2680,7 @@ class flat_multimap
|
|
2355
2680
|
//!
|
2356
2681
|
//! <b>Note</b>: Invalidates elements with keys
|
2357
2682
|
//! not less than the erased element.
|
2358
|
-
|
2683
|
+
inline iterator erase(const_iterator p)
|
2359
2684
|
{
|
2360
2685
|
return dtl::force_copy<iterator>(
|
2361
2686
|
m_flat_tree.erase(dtl::force_copy<impl_const_iterator>(p)));
|
@@ -2367,7 +2692,24 @@ class flat_multimap
|
|
2367
2692
|
//!
|
2368
2693
|
//! <b>Complexity</b>: Logarithmic search time plus erasure time
|
2369
2694
|
//! linear to the elements with bigger keys.
|
2370
|
-
|
2695
|
+
inline size_type erase(const key_type& x)
|
2696
|
+
{ return m_flat_tree.erase(x); }
|
2697
|
+
|
2698
|
+
//! <b>Requires</b>: This overload is available only if
|
2699
|
+
//! key_compare::is_transparent exists.
|
2700
|
+
//!
|
2701
|
+
//! <b>Effects</b>: Erases all elements in the container with key equivalent to x.
|
2702
|
+
//!
|
2703
|
+
//! <b>Returns</b>: Returns the number of erased elements.
|
2704
|
+
template <class K>
|
2705
|
+
inline BOOST_CONTAINER_DOC1ST
|
2706
|
+
(size_type
|
2707
|
+
, typename dtl::enable_if_c<
|
2708
|
+
dtl::is_transparent<key_compare>::value && //transparent
|
2709
|
+
!dtl::is_convertible<K BOOST_MOVE_I iterator>::value && //not convertible to iterator
|
2710
|
+
!dtl::is_convertible<K BOOST_MOVE_I const_iterator>::value //not convertible to const_iterator
|
2711
|
+
BOOST_MOVE_I size_type>::type)
|
2712
|
+
erase(const K& x)
|
2371
2713
|
{ return m_flat_tree.erase(x); }
|
2372
2714
|
|
2373
2715
|
//! <b>Effects</b>: Erases all the elements in the range [first, last).
|
@@ -2378,7 +2720,7 @@ class flat_multimap
|
|
2378
2720
|
//!
|
2379
2721
|
//! <b>Complexity</b>: Logarithmic search time plus erasure time
|
2380
2722
|
//! linear to the elements with bigger keys.
|
2381
|
-
|
2723
|
+
inline iterator erase(const_iterator first, const_iterator last)
|
2382
2724
|
{
|
2383
2725
|
return dtl::force_copy<iterator>
|
2384
2726
|
(m_flat_tree.erase( dtl::force_copy<impl_const_iterator>(first)
|
@@ -2390,17 +2732,17 @@ class flat_multimap
|
|
2390
2732
|
//! <b>Throws</b>: Nothing.
|
2391
2733
|
//!
|
2392
2734
|
//! <b>Complexity</b>: Constant.
|
2393
|
-
|
2735
|
+
inline void swap(flat_multimap& x)
|
2394
2736
|
BOOST_NOEXCEPT_IF( allocator_traits_type::is_always_equal::value
|
2395
2737
|
&& boost::container::dtl::is_nothrow_swappable<Compare>::value )
|
2396
2738
|
{ m_flat_tree.swap(x.m_flat_tree); }
|
2397
2739
|
|
2398
|
-
//! <b>Effects</b>: erase(
|
2740
|
+
//! <b>Effects</b>: erase(begin(),end()).
|
2399
2741
|
//!
|
2400
2742
|
//! <b>Postcondition</b>: size() == 0.
|
2401
2743
|
//!
|
2402
2744
|
//! <b>Complexity</b>: linear in size().
|
2403
|
-
|
2745
|
+
inline void clear() BOOST_NOEXCEPT_OR_NOTHROW
|
2404
2746
|
{ m_flat_tree.clear(); }
|
2405
2747
|
|
2406
2748
|
//////////////////////////////////////////////
|
@@ -2413,14 +2755,16 @@ class flat_multimap
|
|
2413
2755
|
//! of which a was constructed.
|
2414
2756
|
//!
|
2415
2757
|
//! <b>Complexity</b>: Constant.
|
2416
|
-
|
2758
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2759
|
+
key_compare key_comp() const
|
2417
2760
|
{ return dtl::force_copy<key_compare>(m_flat_tree.key_comp()); }
|
2418
2761
|
|
2419
2762
|
//! <b>Effects</b>: Returns an object of value_compare constructed out
|
2420
2763
|
//! of the comparison object.
|
2421
2764
|
//!
|
2422
2765
|
//! <b>Complexity</b>: Constant.
|
2423
|
-
|
2766
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2767
|
+
value_compare value_comp() const
|
2424
2768
|
{ return value_compare(dtl::force_copy<key_compare>(m_flat_tree.key_comp())); }
|
2425
2769
|
|
2426
2770
|
//////////////////////////////////////////////
|
@@ -2433,60 +2777,194 @@ class flat_multimap
|
|
2433
2777
|
//! equivalent to x, or end() if such an element is not found.
|
2434
2778
|
//!
|
2435
2779
|
//! <b>Complexity</b>: Logarithmic.
|
2436
|
-
|
2780
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2781
|
+
iterator find(const key_type& x)
|
2782
|
+
{ return dtl::force_copy<iterator>(m_flat_tree.find(x)); }
|
2783
|
+
|
2784
|
+
//! <b>Returns</b>: An const_iterator pointing to an element with the key
|
2785
|
+
//! equivalent to x, or end() if such an element is not found.
|
2786
|
+
//!
|
2787
|
+
//! <b>Complexity</b>: Logarithmic.
|
2788
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2789
|
+
const_iterator find(const key_type& x) const
|
2790
|
+
{ return dtl::force_copy<const_iterator>(m_flat_tree.find(x)); }
|
2791
|
+
|
2792
|
+
//! <b>Requires</b>: This overload is available only if
|
2793
|
+
//! key_compare::is_transparent exists.
|
2794
|
+
//!
|
2795
|
+
//! <b>Returns</b>: An iterator pointing to an element with the key
|
2796
|
+
//! equivalent to x, or end() if such an element is not found.
|
2797
|
+
//!
|
2798
|
+
//! <b>Complexity</b>: Logarithmic.
|
2799
|
+
template<class K>
|
2800
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2801
|
+
iterator find(const K& x)
|
2437
2802
|
{ return dtl::force_copy<iterator>(m_flat_tree.find(x)); }
|
2438
2803
|
|
2804
|
+
//! <b>Requires</b>: This overload is available only if
|
2805
|
+
//! key_compare::is_transparent exists.
|
2806
|
+
//!
|
2439
2807
|
//! <b>Returns</b>: An const_iterator pointing to an element with the key
|
2440
2808
|
//! equivalent to x, or end() if such an element is not found.
|
2441
2809
|
//!
|
2442
2810
|
//! <b>Complexity</b>: Logarithmic.
|
2443
|
-
|
2811
|
+
template<class K>
|
2812
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2813
|
+
const_iterator find(const K& x) const
|
2444
2814
|
{ return dtl::force_copy<const_iterator>(m_flat_tree.find(x)); }
|
2445
2815
|
|
2446
2816
|
//! <b>Returns</b>: The number of elements with key equivalent to x.
|
2447
2817
|
//!
|
2448
2818
|
//! <b>Complexity</b>: log(size())+count(k)
|
2449
|
-
|
2819
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2820
|
+
size_type count(const key_type& x) const
|
2821
|
+
{ return m_flat_tree.count(x); }
|
2822
|
+
|
2823
|
+
//! <b>Requires</b>: This overload is available only if
|
2824
|
+
//! key_compare::is_transparent exists.
|
2825
|
+
//!
|
2826
|
+
//! <b>Returns</b>: The number of elements with key equivalent to x.
|
2827
|
+
//!
|
2828
|
+
//! <b>Complexity</b>: log(size())+count(k)
|
2829
|
+
template<class K>
|
2830
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2831
|
+
size_type count(const K& x) const
|
2450
2832
|
{ return m_flat_tree.count(x); }
|
2451
2833
|
|
2834
|
+
//! <b>Returns</b>: Returns true if there is an element with key
|
2835
|
+
//! equivalent to key in the container, otherwise false.
|
2836
|
+
//!
|
2837
|
+
//! <b>Complexity</b>: log(size()).
|
2838
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2839
|
+
bool contains(const key_type& x) const
|
2840
|
+
{ return m_flat_tree.find(x) != m_flat_tree.end(); }
|
2841
|
+
|
2842
|
+
//! <b>Requires</b>: This overload is available only if
|
2843
|
+
//! key_compare::is_transparent exists.
|
2844
|
+
//!
|
2845
|
+
//! <b>Returns</b>: Returns true if there is an element with key
|
2846
|
+
//! equivalent to key in the container, otherwise false.
|
2847
|
+
//!
|
2848
|
+
//! <b>Complexity</b>: log(size()).
|
2849
|
+
template<typename K>
|
2850
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2851
|
+
bool contains(const K& x) const
|
2852
|
+
{ return m_flat_tree.find(x) != m_flat_tree.end(); }
|
2853
|
+
|
2452
2854
|
//! <b>Returns</b>: An iterator pointing to the first element with key not less
|
2453
|
-
//! than
|
2855
|
+
//! than x, or end() if such an element is not found.
|
2454
2856
|
//!
|
2455
2857
|
//! <b>Complexity</b>: Logarithmic
|
2456
|
-
|
2858
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2859
|
+
iterator lower_bound(const key_type& x)
|
2457
2860
|
{ return dtl::force_copy<iterator>(m_flat_tree.lower_bound(x)); }
|
2458
2861
|
|
2459
|
-
//! <b>Returns</b>:
|
2460
|
-
//!
|
2862
|
+
//! <b>Returns</b>: An iterator pointing to the first element with key not less
|
2863
|
+
//! than x, or end() if such an element is not found.
|
2864
|
+
//!
|
2865
|
+
//! <b>Complexity</b>: Logarithmic
|
2866
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2867
|
+
const_iterator lower_bound(const key_type& x) const
|
2868
|
+
{ return dtl::force_copy<const_iterator>(m_flat_tree.lower_bound(x)); }
|
2869
|
+
|
2870
|
+
//! <b>Requires</b>: This overload is available only if
|
2871
|
+
//! key_compare::is_transparent exists.
|
2872
|
+
//!
|
2873
|
+
//! <b>Returns</b>: An iterator pointing to the first element with key not less
|
2874
|
+
//! than x, or end() if such an element is not found.
|
2461
2875
|
//!
|
2462
2876
|
//! <b>Complexity</b>: Logarithmic
|
2463
|
-
|
2464
|
-
|
2877
|
+
template<class K>
|
2878
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2879
|
+
iterator lower_bound(const K& x)
|
2880
|
+
{ return dtl::force_copy<iterator>(m_flat_tree.lower_bound(x)); }
|
2465
2881
|
|
2882
|
+
//! <b>Requires</b>: This overload is available only if
|
2883
|
+
//! key_compare::is_transparent exists.
|
2884
|
+
//!
|
2466
2885
|
//! <b>Returns</b>: An iterator pointing to the first element with key not less
|
2467
2886
|
//! than x, or end() if such an element is not found.
|
2468
2887
|
//!
|
2469
2888
|
//! <b>Complexity</b>: Logarithmic
|
2470
|
-
|
2889
|
+
template<class K>
|
2890
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2891
|
+
const_iterator lower_bound(const K& x) const
|
2892
|
+
{ return dtl::force_copy<const_iterator>(m_flat_tree.lower_bound(x)); }
|
2893
|
+
|
2894
|
+
//! <b>Returns</b>: An iterator pointing to the first element with key greater
|
2895
|
+
//! than x, or end() if such an element is not found.
|
2896
|
+
//!
|
2897
|
+
//! <b>Complexity</b>: Logarithmic
|
2898
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2899
|
+
iterator upper_bound(const key_type& x)
|
2471
2900
|
{return dtl::force_copy<iterator>(m_flat_tree.upper_bound(x)); }
|
2472
2901
|
|
2473
2902
|
//! <b>Returns</b>: A const iterator pointing to the first element with key
|
2474
|
-
//!
|
2903
|
+
//! greater than x, or end() if such an element is not found.
|
2475
2904
|
//!
|
2476
2905
|
//! <b>Complexity</b>: Logarithmic
|
2477
|
-
|
2906
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2907
|
+
const_iterator upper_bound(const key_type& x) const
|
2908
|
+
{ return dtl::force_copy<const_iterator>(m_flat_tree.upper_bound(x)); }
|
2909
|
+
|
2910
|
+
//! <b>Requires</b>: This overload is available only if
|
2911
|
+
//! key_compare::is_transparent exists.
|
2912
|
+
//!
|
2913
|
+
//! <b>Returns</b>: An iterator pointing to the first element with key greater
|
2914
|
+
//! than x, or end() if such an element is not found.
|
2915
|
+
//!
|
2916
|
+
//! <b>Complexity</b>: Logarithmic
|
2917
|
+
template<class K>
|
2918
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2919
|
+
iterator upper_bound(const K& x)
|
2920
|
+
{return dtl::force_copy<iterator>(m_flat_tree.upper_bound(x)); }
|
2921
|
+
|
2922
|
+
//! <b>Requires</b>: This overload is available only if
|
2923
|
+
//! key_compare::is_transparent exists.
|
2924
|
+
//!
|
2925
|
+
//! <b>Returns</b>: A const iterator pointing to the first element with key
|
2926
|
+
//! greater than x, or end() if such an element is not found.
|
2927
|
+
//!
|
2928
|
+
//! <b>Complexity</b>: Logarithmic
|
2929
|
+
template<class K>
|
2930
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2931
|
+
const_iterator upper_bound(const K& x) const
|
2478
2932
|
{ return dtl::force_copy<const_iterator>(m_flat_tree.upper_bound(x)); }
|
2479
2933
|
|
2480
2934
|
//! <b>Effects</b>: Equivalent to std::make_pair(this->lower_bound(k), this->upper_bound(k)).
|
2481
2935
|
//!
|
2482
2936
|
//! <b>Complexity</b>: Logarithmic
|
2483
|
-
|
2937
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2938
|
+
std::pair<iterator,iterator> equal_range(const key_type& x)
|
2484
2939
|
{ return dtl::force_copy<std::pair<iterator,iterator> >(m_flat_tree.equal_range(x)); }
|
2485
2940
|
|
2486
2941
|
//! <b>Effects</b>: Equivalent to std::make_pair(this->lower_bound(k), this->upper_bound(k)).
|
2487
2942
|
//!
|
2488
2943
|
//! <b>Complexity</b>: Logarithmic
|
2489
|
-
|
2944
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2945
|
+
std::pair<const_iterator, const_iterator> equal_range(const key_type& x) const
|
2946
|
+
{ return dtl::force_copy<std::pair<const_iterator,const_iterator> >(m_flat_tree.equal_range(x)); }
|
2947
|
+
|
2948
|
+
//! <b>Requires</b>: This overload is available only if
|
2949
|
+
//! key_compare::is_transparent exists.
|
2950
|
+
//!
|
2951
|
+
//! <b>Effects</b>: Equivalent to std::make_pair(this->lower_bound(k), this->upper_bound(k)).
|
2952
|
+
//!
|
2953
|
+
//! <b>Complexity</b>: Logarithmic
|
2954
|
+
template<class K>
|
2955
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2956
|
+
std::pair<iterator,iterator> equal_range(const K& x)
|
2957
|
+
{ return dtl::force_copy<std::pair<iterator,iterator> >(m_flat_tree.equal_range(x)); }
|
2958
|
+
|
2959
|
+
//! <b>Requires</b>: This overload is available only if
|
2960
|
+
//! key_compare::is_transparent exists.
|
2961
|
+
//!
|
2962
|
+
//! <b>Effects</b>: Equivalent to std::make_pair(this->lower_bound(k), this->upper_bound(k)).
|
2963
|
+
//!
|
2964
|
+
//! <b>Complexity</b>: Logarithmic
|
2965
|
+
template<class K>
|
2966
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2967
|
+
std::pair<const_iterator, const_iterator> equal_range(const K& x) const
|
2490
2968
|
{ return dtl::force_copy<std::pair<const_iterator,const_iterator> >(m_flat_tree.equal_range(x)); }
|
2491
2969
|
|
2492
2970
|
//! <b>Effects</b>: Extracts the internal sequence container.
|
@@ -2496,10 +2974,9 @@ class flat_multimap
|
|
2496
2974
|
//! <b>Postcondition</b>: this->empty()
|
2497
2975
|
//!
|
2498
2976
|
//! <b>Throws</b>: If secuence_type's move constructor throws
|
2499
|
-
|
2500
|
-
|
2501
|
-
|
2502
|
-
}
|
2977
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
2978
|
+
sequence_type extract_sequence()
|
2979
|
+
{ return boost::move(dtl::force<sequence_type>(m_flat_tree.get_sequence_ref())); }
|
2503
2980
|
|
2504
2981
|
//! <b>Effects</b>: Discards the internally hold sequence container and adopts the
|
2505
2982
|
//! one passed externally using the move assignment.
|
@@ -2507,7 +2984,7 @@ class flat_multimap
|
|
2507
2984
|
//! <b>Complexity</b>: Assuming O(1) move assignment, O(NlogN) with N = seq.size()
|
2508
2985
|
//!
|
2509
2986
|
//! <b>Throws</b>: If the comparison or the move constructor throws
|
2510
|
-
|
2987
|
+
inline void adopt_sequence(BOOST_RV_REF(sequence_type) seq)
|
2511
2988
|
{ this->m_flat_tree.adopt_sequence_equal(boost::move(dtl::force<impl_sequence_type>(seq))); }
|
2512
2989
|
|
2513
2990
|
//! <b>Requires</b>: seq shall be ordered according to this->compare().
|
@@ -2518,52 +2995,135 @@ class flat_multimap
|
|
2518
2995
|
//! <b>Complexity</b>: Assuming O(1) move assignment, O(1)
|
2519
2996
|
//!
|
2520
2997
|
//! <b>Throws</b>: If the move assignment throws
|
2521
|
-
|
2998
|
+
inline void adopt_sequence(ordered_range_t, BOOST_RV_REF(sequence_type) seq)
|
2522
2999
|
{ this->m_flat_tree.adopt_sequence_equal(ordered_range_t(), boost::move(dtl::force<impl_sequence_type>(seq))); }
|
2523
3000
|
|
3001
|
+
//! <b>Effects</b>: Returns a const view of the underlying sequence.
|
3002
|
+
//!
|
3003
|
+
//! <b>Complexity</b>: Constant
|
3004
|
+
//!
|
3005
|
+
//! <b>Throws</b>: Nothing
|
3006
|
+
inline const sequence_type & sequence() const BOOST_NOEXCEPT
|
3007
|
+
{ return dtl::force<sequence_type>(m_flat_tree.get_sequence_cref()); }
|
3008
|
+
|
2524
3009
|
//! <b>Effects</b>: Returns true if x and y are equal
|
2525
3010
|
//!
|
2526
3011
|
//! <b>Complexity</b>: Linear to the number of elements in the container.
|
2527
|
-
|
3012
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
3013
|
+
friend bool operator==(const flat_multimap& x, const flat_multimap& y)
|
2528
3014
|
{ return x.size() == y.size() && ::boost::container::algo_equal(x.begin(), x.end(), y.begin()); }
|
2529
3015
|
|
2530
3016
|
//! <b>Effects</b>: Returns true if x and y are unequal
|
2531
3017
|
//!
|
2532
3018
|
//! <b>Complexity</b>: Linear to the number of elements in the container.
|
2533
|
-
|
3019
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
3020
|
+
friend bool operator!=(const flat_multimap& x, const flat_multimap& y)
|
2534
3021
|
{ return !(x == y); }
|
2535
3022
|
|
2536
3023
|
//! <b>Effects</b>: Returns true if x is less than y
|
2537
3024
|
//!
|
2538
3025
|
//! <b>Complexity</b>: Linear to the number of elements in the container.
|
2539
|
-
|
3026
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
3027
|
+
friend bool operator<(const flat_multimap& x, const flat_multimap& y)
|
2540
3028
|
{ return ::boost::container::algo_lexicographical_compare(x.begin(), x.end(), y.begin(), y.end()); }
|
2541
3029
|
|
2542
3030
|
//! <b>Effects</b>: Returns true if x is greater than y
|
2543
3031
|
//!
|
2544
3032
|
//! <b>Complexity</b>: Linear to the number of elements in the container.
|
2545
|
-
|
3033
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
3034
|
+
friend bool operator>(const flat_multimap& x, const flat_multimap& y)
|
2546
3035
|
{ return y < x; }
|
2547
3036
|
|
2548
3037
|
//! <b>Effects</b>: Returns true if x is equal or less than y
|
2549
3038
|
//!
|
2550
3039
|
//! <b>Complexity</b>: Linear to the number of elements in the container.
|
2551
|
-
|
3040
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
3041
|
+
friend bool operator<=(const flat_multimap& x, const flat_multimap& y)
|
2552
3042
|
{ return !(y < x); }
|
2553
3043
|
|
2554
3044
|
//! <b>Effects</b>: Returns true if x is equal or greater than y
|
2555
3045
|
//!
|
2556
3046
|
//! <b>Complexity</b>: Linear to the number of elements in the container.
|
2557
|
-
|
3047
|
+
BOOST_CONTAINER_ATTRIBUTE_NODISCARD inline
|
3048
|
+
friend bool operator>=(const flat_multimap& x, const flat_multimap& y)
|
2558
3049
|
{ return !(x < y); }
|
2559
3050
|
|
2560
3051
|
//! <b>Effects</b>: x.swap(y)
|
2561
3052
|
//!
|
2562
3053
|
//! <b>Complexity</b>: Constant.
|
2563
|
-
|
3054
|
+
inline friend void swap(flat_multimap& x, flat_multimap& y)
|
3055
|
+
BOOST_NOEXCEPT_IF(BOOST_NOEXCEPT(x.swap(y)))
|
2564
3056
|
{ x.swap(y); }
|
2565
3057
|
};
|
2566
3058
|
|
3059
|
+
#if defined(BOOST_GCC) && (BOOST_GCC >= 100000) && !defined(BOOST_CONTAINER_STD_PAIR_IS_MOVABLE)
|
3060
|
+
#pragma GCC pop_options
|
3061
|
+
#endif
|
3062
|
+
|
3063
|
+
#ifndef BOOST_CONTAINER_NO_CXX17_CTAD
|
3064
|
+
|
3065
|
+
template <typename InputIterator>
|
3066
|
+
flat_multimap(InputIterator, InputIterator) ->
|
3067
|
+
flat_multimap< it_based_non_const_first_type_t<InputIterator>
|
3068
|
+
, it_based_second_type_t<InputIterator>>;
|
3069
|
+
|
3070
|
+
template < typename InputIterator, typename AllocatorOrCompare>
|
3071
|
+
flat_multimap(InputIterator, InputIterator, AllocatorOrCompare const&) ->
|
3072
|
+
flat_multimap< it_based_non_const_first_type_t<InputIterator>
|
3073
|
+
, it_based_second_type_t<InputIterator>
|
3074
|
+
, typename dtl::if_c< // Compare
|
3075
|
+
dtl::is_allocator<AllocatorOrCompare>::value
|
3076
|
+
, std::less<it_based_non_const_first_type_t<InputIterator>>
|
3077
|
+
, AllocatorOrCompare
|
3078
|
+
>::type
|
3079
|
+
, typename dtl::if_c< // Allocator
|
3080
|
+
dtl::is_allocator<AllocatorOrCompare>::value
|
3081
|
+
, AllocatorOrCompare
|
3082
|
+
, new_allocator<std::pair<it_based_non_const_first_type_t<InputIterator>, it_based_second_type_t<InputIterator>>>
|
3083
|
+
>::type
|
3084
|
+
>;
|
3085
|
+
|
3086
|
+
template < typename InputIterator, typename Compare, typename Allocator
|
3087
|
+
, typename = dtl::require_nonallocator_t<Compare>
|
3088
|
+
, typename = dtl::require_allocator_t<Allocator>>
|
3089
|
+
flat_multimap(InputIterator, InputIterator, Compare const&, Allocator const&) ->
|
3090
|
+
flat_multimap< it_based_non_const_first_type_t<InputIterator>
|
3091
|
+
, it_based_second_type_t<InputIterator>
|
3092
|
+
, Compare
|
3093
|
+
, Allocator>;
|
3094
|
+
|
3095
|
+
template <typename InputIterator>
|
3096
|
+
flat_multimap(ordered_range_t, InputIterator, InputIterator) ->
|
3097
|
+
flat_multimap< it_based_non_const_first_type_t<InputIterator>
|
3098
|
+
, it_based_second_type_t<InputIterator>>;
|
3099
|
+
|
3100
|
+
template < typename InputIterator, typename AllocatorOrCompare>
|
3101
|
+
flat_multimap(ordered_range_t, InputIterator, InputIterator, AllocatorOrCompare const&) ->
|
3102
|
+
flat_multimap< it_based_non_const_first_type_t<InputIterator>
|
3103
|
+
, it_based_second_type_t<InputIterator>
|
3104
|
+
, typename dtl::if_c< // Compare
|
3105
|
+
dtl::is_allocator<AllocatorOrCompare>::value
|
3106
|
+
, std::less<it_based_non_const_first_type_t<InputIterator>>
|
3107
|
+
, AllocatorOrCompare
|
3108
|
+
>::type
|
3109
|
+
, typename dtl::if_c< // Allocator
|
3110
|
+
dtl::is_allocator<AllocatorOrCompare>::value
|
3111
|
+
, AllocatorOrCompare
|
3112
|
+
, new_allocator<std::pair<it_based_non_const_first_type_t<InputIterator>, it_based_second_type_t<InputIterator>>>
|
3113
|
+
>::type
|
3114
|
+
>;
|
3115
|
+
|
3116
|
+
template < typename InputIterator, typename Compare, typename Allocator
|
3117
|
+
, typename = dtl::require_nonallocator_t<Compare>
|
3118
|
+
, typename = dtl::require_allocator_t<Allocator>>
|
3119
|
+
flat_multimap(ordered_range_t, InputIterator, InputIterator, Compare const&, Allocator const&) ->
|
3120
|
+
flat_multimap< it_based_non_const_first_type_t<InputIterator>
|
3121
|
+
, it_based_second_type_t<InputIterator>
|
3122
|
+
, Compare
|
3123
|
+
, Allocator>;
|
3124
|
+
|
3125
|
+
#endif
|
3126
|
+
|
2567
3127
|
}}
|
2568
3128
|
|
2569
3129
|
#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
|
@@ -2575,10 +3135,10 @@ namespace boost {
|
|
2575
3135
|
template <class Key, class T, class Compare, class AllocatorOrContainer>
|
2576
3136
|
struct has_trivial_destructor_after_move< boost::container::flat_multimap<Key, T, Compare, AllocatorOrContainer> >
|
2577
3137
|
{
|
2578
|
-
typedef typename
|
2579
|
-
|
2580
|
-
|
2581
|
-
|
3138
|
+
typedef typename boost::container::flat_multimap<Key, T, Compare, AllocatorOrContainer>::value_type value_t;
|
3139
|
+
typedef typename ::boost::container::dtl::container_or_allocator_rebind<AllocatorOrContainer, value_t>::type alloc_or_cont_t;
|
3140
|
+
typedef ::boost::container::dtl::flat_tree<value_t,::boost::container::dtl::select1st<Key>, Compare, alloc_or_cont_t> tree;
|
3141
|
+
BOOST_STATIC_CONSTEXPR bool value = ::boost::has_trivial_destructor_after_move<tree>::value;
|
2582
3142
|
};
|
2583
3143
|
|
2584
3144
|
} //namespace boost {
|