rroonga 5.1.1-x64-mingw32 → 6.0.0-x64-mingw32
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 +4 -4
- data/Rakefile +1 -1
- data/bin/grndump +9 -0
- data/doc/text/cross-compile.md +72 -0
- data/doc/text/install.md +121 -0
- data/doc/text/news.md +1451 -0
- data/doc/text/release.md +135 -0
- data/doc/text/tutorial.md +402 -0
- data/ext/groonga/rb-grn-column.c +54 -24
- data/ext/groonga/rb-grn-config.c +131 -10
- data/ext/groonga/rb-grn-context.c +0 -10
- data/ext/groonga/rb-grn-encoding.c +0 -2
- data/ext/groonga/rb-grn-expression.c +63 -3
- data/ext/groonga/rb-grn-index.c +34 -0
- data/ext/groonga/rb-grn-object.c +10 -10
- data/ext/groonga/rb-grn-operator.c +7 -0
- data/ext/groonga/rb-grn-plugin.c +39 -0
- data/ext/groonga/rb-grn-utils.c +5 -65
- data/ext/groonga/rb-grn.h +9 -9
- data/ext/groonga/rb-groonga.c +31 -1
- data/lib/2.1/groonga.so +0 -0
- data/lib/2.2/groonga.so +0 -0
- data/lib/2.3/groonga.so +0 -0
- data/lib/groonga.rb +1 -0
- data/lib/groonga/column.rb +13 -0
- data/lib/groonga/dumper.rb +3 -1
- data/lib/groonga/expression-builder.rb +66 -18
- data/lib/groonga/{expression-builder-19.rb → index.rb} +11 -19
- data/lib/groonga/record.rb +1 -1
- data/lib/rroonga.rb +16 -0
- data/rroonga-build.rb +6 -6
- data/rroonga.gemspec +1 -1
- data/test/groonga-test-utils.rb +0 -8
- data/test/test-column.rb +107 -1
- data/test/test-config.rb +18 -0
- data/test/test-database.rb +0 -2
- data/test/test-error-message.rb +20 -0
- data/test/test-expression-builder.rb +172 -29
- data/test/test-plugin.rb +25 -1
- data/test/test-table-dumper.rb +35 -6
- data/test/test-table-select.rb +0 -1
- data/vendor/local/bin/grndb.exe +0 -0
- data/vendor/local/bin/groonga-benchmark.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgcc_s_seh-1.dll +0 -0
- data/vendor/local/bin/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-2.dll +0 -0
- data/vendor/local/bin/libmsgpack-4.dll +0 -0
- data/vendor/local/bin/libmsgpackc-2.dll +0 -0
- data/vendor/local/bin/libonig-5.dll +0 -0
- data/vendor/local/bin/libstdc++-6.dll +0 -0
- data/vendor/local/bin/lz4.exe +0 -0
- data/vendor/local/bin/lz4c.exe +0 -0
- data/vendor/local/bin/lz4cat +0 -0
- data/vendor/local/bin/mecab-config +5 -5
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/bin/onig-config +1 -1
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
- data/vendor/local/include/groonga/groonga.h +16 -11
- data/vendor/local/include/groonga/groonga/array.h +76 -0
- data/vendor/local/include/groonga/groonga/command.h +3 -5
- data/vendor/local/include/groonga/groonga/config.h +65 -0
- data/vendor/local/include/groonga/groonga/dat.h +100 -0
- data/vendor/local/include/groonga/groonga/dump.h +34 -0
- data/vendor/local/include/groonga/groonga/expr.h +21 -16
- data/vendor/local/include/groonga/groonga/file_reader.h +2 -5
- data/vendor/local/include/groonga/groonga/geo.h +2 -5
- data/vendor/local/include/groonga/groonga/groonga.h +28 -270
- data/vendor/local/include/groonga/groonga/hash.h +89 -0
- data/vendor/local/include/groonga/groonga/ii.h +3 -5
- data/vendor/local/include/groonga/groonga/nfkc.h +4 -5
- data/vendor/local/include/groonga/groonga/normalizer.h +3 -5
- data/vendor/local/include/groonga/groonga/obj.h +7 -5
- data/vendor/local/include/groonga/groonga/output.h +3 -5
- data/vendor/local/include/groonga/groonga/pat.h +102 -0
- data/vendor/local/include/groonga/groonga/plugin.h +29 -12
- data/vendor/local/include/groonga/groonga/portability.h +3 -5
- data/vendor/local/include/groonga/groonga/request_canceler.h +2 -5
- data/vendor/local/include/groonga/groonga/scorer.h +3 -5
- data/vendor/local/include/groonga/groonga/thread.h +2 -5
- data/vendor/local/include/groonga/groonga/token.h +5 -6
- data/vendor/local/include/groonga/groonga/token_filter.h +3 -5
- data/vendor/local/include/groonga/groonga/tokenizer.h +3 -5
- data/vendor/local/include/groonga/groonga/type.h +31 -0
- data/vendor/local/include/groonga/groonga/util.h +3 -5
- data/vendor/local/include/groonga/groonga/windows.h +2 -5
- data/vendor/local/include/groonga/groonga/windows_event_logger.h +2 -5
- data/vendor/local/include/mecab.h +1336 -96
- data/vendor/local/include/msgpack.h +3 -11
- data/vendor/local/include/msgpack.hpp +4 -11
- data/vendor/local/include/msgpack/adaptor/adaptor_base.hpp +84 -0
- data/vendor/local/include/msgpack/adaptor/array_ref.hpp +174 -0
- data/vendor/local/include/msgpack/adaptor/bool.hpp +41 -33
- data/vendor/local/include/msgpack/adaptor/boost/fusion.hpp +160 -0
- data/vendor/local/include/msgpack/adaptor/boost/msgpack_variant.hpp +430 -0
- data/vendor/local/include/msgpack/adaptor/boost/optional.hpp +96 -0
- data/vendor/local/include/msgpack/adaptor/boost/string_ref.hpp +87 -0
- data/vendor/local/include/msgpack/adaptor/char_ptr.hpp +132 -53
- data/vendor/local/include/msgpack/adaptor/check_container_size.hpp +18 -12
- data/vendor/local/include/msgpack/adaptor/cpp11/array.hpp +106 -44
- data/vendor/local/include/msgpack/adaptor/cpp11/array_char.hpp +59 -54
- data/vendor/local/include/msgpack/adaptor/cpp11/array_unsigned_char.hpp +89 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/forward_list.hpp +65 -46
- data/vendor/local/include/msgpack/adaptor/cpp11/reference_wrapper.hpp +68 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/shared_ptr.hpp +82 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/tuple.hpp +88 -64
- data/vendor/local/include/msgpack/adaptor/cpp11/unique_ptr.hpp +82 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map.hpp +151 -111
- data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set.hpp +142 -104
- data/vendor/local/include/msgpack/adaptor/define.hpp +15 -13
- data/vendor/local/include/msgpack/adaptor/deque.hpp +78 -53
- data/vendor/local/include/msgpack/adaptor/detail/{cpp03_define.hpp → cpp03_define_array.hpp} +225 -210
- data/vendor/local/include/msgpack/adaptor/detail/cpp03_define_map.hpp +2791 -0
- data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple.hpp +3070 -3079
- data/vendor/local/include/msgpack/adaptor/detail/{cpp11_define.hpp → cpp11_define_array.hpp} +71 -62
- data/vendor/local/include/msgpack/adaptor/detail/cpp11_define_map.hpp +163 -0
- data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple.hpp +105 -42
- data/vendor/local/include/msgpack/adaptor/ext.hpp +237 -0
- data/vendor/local/include/msgpack/adaptor/fixint.hpp +178 -92
- data/vendor/local/include/msgpack/adaptor/float.hpp +87 -69
- data/vendor/local/include/msgpack/adaptor/int.hpp +243 -123
- data/vendor/local/include/msgpack/adaptor/list.hpp +76 -53
- data/vendor/local/include/msgpack/adaptor/map.hpp +244 -157
- data/vendor/local/include/msgpack/adaptor/msgpack_tuple.hpp +3 -11
- data/vendor/local/include/msgpack/adaptor/nil.hpp +45 -29
- data/vendor/local/include/msgpack/adaptor/pair.hpp +58 -38
- data/vendor/local/include/msgpack/adaptor/raw.hpp +47 -39
- data/vendor/local/include/msgpack/adaptor/set.hpp +156 -102
- data/vendor/local/include/msgpack/adaptor/string.hpp +58 -50
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_map.hpp +120 -113
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_set.hpp +114 -106
- data/vendor/local/include/msgpack/adaptor/v4raw.hpp +106 -0
- data/vendor/local/include/msgpack/adaptor/vector.hpp +94 -60
- data/vendor/local/include/msgpack/adaptor/vector_bool.hpp +59 -51
- data/vendor/local/include/msgpack/adaptor/vector_char.hpp +62 -54
- data/vendor/local/include/msgpack/adaptor/vector_unsigned_char.hpp +89 -0
- data/vendor/local/include/msgpack/cpp_config.hpp +37 -22
- data/vendor/local/include/msgpack/detail/cpp03_zone.hpp +17 -11
- data/vendor/local/include/msgpack/detail/cpp11_zone.hpp +19 -19
- data/vendor/local/include/msgpack/fbuffer.h +3 -11
- data/vendor/local/include/msgpack/fbuffer.hpp +7 -11
- data/vendor/local/include/msgpack/gcc_atomic.h +3 -11
- data/vendor/local/include/msgpack/iterator.hpp +9 -13
- data/vendor/local/include/msgpack/meta.hpp +51 -0
- data/vendor/local/include/msgpack/object.h +3 -11
- data/vendor/local/include/msgpack/object.hpp +390 -290
- data/vendor/local/include/msgpack/object_fwd.hpp +57 -44
- data/vendor/local/include/msgpack/pack.h +6 -12
- data/vendor/local/include/msgpack/pack.hpp +58 -30
- data/vendor/local/include/msgpack/pack_define.h +3 -11
- data/vendor/local/include/msgpack/pack_template.h +35 -15
- data/vendor/local/include/msgpack/predef.h +19 -0
- data/vendor/local/include/msgpack/predef/architecture.h +30 -0
- data/vendor/local/include/msgpack/predef/architecture/alpha.h +60 -0
- data/vendor/local/include/msgpack/predef/architecture/arm.h +71 -0
- data/vendor/local/include/msgpack/predef/architecture/blackfin.h +47 -0
- data/vendor/local/include/msgpack/predef/architecture/convex.h +67 -0
- data/vendor/local/include/msgpack/predef/architecture/ia64.h +49 -0
- data/vendor/local/include/msgpack/predef/architecture/m68k.h +83 -0
- data/vendor/local/include/msgpack/predef/architecture/mips.h +74 -0
- data/vendor/local/include/msgpack/predef/architecture/parisc.h +65 -0
- data/vendor/local/include/msgpack/predef/architecture/ppc.h +73 -0
- data/vendor/local/include/msgpack/predef/architecture/pyramid.h +43 -0
- data/vendor/local/include/msgpack/predef/architecture/rs6k.h +56 -0
- data/vendor/local/include/msgpack/predef/architecture/sparc.h +55 -0
- data/vendor/local/include/msgpack/predef/architecture/superh.h +68 -0
- data/vendor/local/include/msgpack/predef/architecture/sys370.h +44 -0
- data/vendor/local/include/msgpack/predef/architecture/sys390.h +44 -0
- data/vendor/local/include/msgpack/predef/architecture/x86.h +38 -0
- data/vendor/local/include/msgpack/predef/architecture/x86/32.h +87 -0
- data/vendor/local/include/msgpack/predef/architecture/x86/64.h +50 -0
- data/vendor/local/include/msgpack/predef/architecture/z.h +43 -0
- data/vendor/local/include/msgpack/predef/compiler.h +41 -0
- data/vendor/local/include/msgpack/predef/compiler/borland.h +64 -0
- data/vendor/local/include/msgpack/predef/compiler/clang.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/comeau.h +62 -0
- data/vendor/local/include/msgpack/predef/compiler/compaq.h +67 -0
- data/vendor/local/include/msgpack/predef/compiler/diab.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/digitalmars.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/dignus.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/edg.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/ekopath.h +58 -0
- data/vendor/local/include/msgpack/predef/compiler/gcc.h +69 -0
- data/vendor/local/include/msgpack/predef/compiler/gcc_xml.h +53 -0
- data/vendor/local/include/msgpack/predef/compiler/greenhills.h +67 -0
- data/vendor/local/include/msgpack/predef/compiler/hp_acc.h +62 -0
- data/vendor/local/include/msgpack/predef/compiler/iar.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/ibm.h +73 -0
- data/vendor/local/include/msgpack/predef/compiler/intel.h +66 -0
- data/vendor/local/include/msgpack/predef/compiler/kai.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/llvm.h +58 -0
- data/vendor/local/include/msgpack/predef/compiler/metaware.h +54 -0
- data/vendor/local/include/msgpack/predef/compiler/metrowerks.h +78 -0
- data/vendor/local/include/msgpack/predef/compiler/microtec.h +54 -0
- data/vendor/local/include/msgpack/predef/compiler/mpw.h +64 -0
- data/vendor/local/include/msgpack/predef/compiler/palm.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/pgi.h +61 -0
- data/vendor/local/include/msgpack/predef/compiler/sgi_mipspro.h +67 -0
- data/vendor/local/include/msgpack/predef/compiler/sunpro.h +67 -0
- data/vendor/local/include/msgpack/predef/compiler/tendra.h +54 -0
- data/vendor/local/include/msgpack/predef/compiler/visualc.h +92 -0
- data/vendor/local/include/msgpack/predef/compiler/watcom.h +57 -0
- data/vendor/local/include/msgpack/predef/detail/_cassert.h +17 -0
- data/vendor/local/include/msgpack/predef/detail/_exception.h +15 -0
- data/vendor/local/include/msgpack/predef/detail/comp_detected.h +10 -0
- data/vendor/local/include/msgpack/predef/detail/endian_compat.h +26 -0
- data/vendor/local/include/msgpack/predef/detail/os_detected.h +10 -0
- data/vendor/local/include/msgpack/predef/detail/platform_detected.h +10 -0
- data/vendor/local/include/msgpack/predef/detail/test.h +17 -0
- data/vendor/local/include/msgpack/predef/language.h +15 -0
- data/vendor/local/include/msgpack/predef/language/objc.h +43 -0
- data/vendor/local/include/msgpack/predef/language/stdc.h +54 -0
- data/vendor/local/include/msgpack/predef/language/stdcpp.h +124 -0
- data/vendor/local/include/msgpack/predef/library.h +14 -0
- data/vendor/local/include/msgpack/predef/library/c.h +18 -0
- data/vendor/local/include/msgpack/predef/library/c/_prefix.h +13 -0
- data/vendor/local/include/msgpack/predef/library/c/gnu.h +62 -0
- data/vendor/local/include/msgpack/predef/library/c/uc.h +48 -0
- data/vendor/local/include/msgpack/predef/library/c/vms.h +48 -0
- data/vendor/local/include/msgpack/predef/library/c/zos.h +57 -0
- data/vendor/local/include/msgpack/predef/library/std.h +23 -0
- data/vendor/local/include/msgpack/predef/library/std/_prefix.h +23 -0
- data/vendor/local/include/msgpack/predef/library/std/cxx.h +47 -0
- data/vendor/local/include/msgpack/predef/library/std/dinkumware.h +53 -0
- data/vendor/local/include/msgpack/predef/library/std/libcomo.h +48 -0
- data/vendor/local/include/msgpack/predef/library/std/modena.h +46 -0
- data/vendor/local/include/msgpack/predef/library/std/msl.h +54 -0
- data/vendor/local/include/msgpack/predef/library/std/roguewave.h +57 -0
- data/vendor/local/include/msgpack/predef/library/std/sgi.h +52 -0
- data/vendor/local/include/msgpack/predef/library/std/stdcpp3.h +54 -0
- data/vendor/local/include/msgpack/predef/library/std/stlport.h +60 -0
- data/vendor/local/include/msgpack/predef/library/std/vacpp.h +45 -0
- data/vendor/local/include/msgpack/predef/make.h +89 -0
- data/vendor/local/include/msgpack/predef/os.h +31 -0
- data/vendor/local/include/msgpack/predef/os/aix.h +67 -0
- data/vendor/local/include/msgpack/predef/os/amigaos.h +47 -0
- data/vendor/local/include/msgpack/predef/os/android.h +46 -0
- data/vendor/local/include/msgpack/predef/os/beos.h +46 -0
- data/vendor/local/include/msgpack/predef/os/bsd.h +95 -0
- data/vendor/local/include/msgpack/predef/os/bsd/bsdi.h +48 -0
- data/vendor/local/include/msgpack/predef/os/bsd/dragonfly.h +50 -0
- data/vendor/local/include/msgpack/predef/os/bsd/free.h +60 -0
- data/vendor/local/include/msgpack/predef/os/bsd/net.h +84 -0
- data/vendor/local/include/msgpack/predef/os/bsd/open.h +171 -0
- data/vendor/local/include/msgpack/predef/os/cygwin.h +46 -0
- data/vendor/local/include/msgpack/predef/os/haiku.h +47 -0
- data/vendor/local/include/msgpack/predef/os/hpux.h +48 -0
- data/vendor/local/include/msgpack/predef/os/ios.h +51 -0
- data/vendor/local/include/msgpack/predef/os/irix.h +47 -0
- data/vendor/local/include/msgpack/predef/os/linux.h +47 -0
- data/vendor/local/include/msgpack/predef/os/macos.h +66 -0
- data/vendor/local/include/msgpack/predef/os/os400.h +46 -0
- data/vendor/local/include/msgpack/predef/os/qnxnto.h +60 -0
- data/vendor/local/include/msgpack/predef/os/solaris.h +47 -0
- data/vendor/local/include/msgpack/predef/os/unix.h +76 -0
- data/vendor/local/include/msgpack/predef/os/vms.h +53 -0
- data/vendor/local/include/msgpack/predef/os/windows.h +51 -0
- data/vendor/local/include/msgpack/predef/other.h +14 -0
- data/vendor/local/include/msgpack/predef/other/endian.h +205 -0
- data/vendor/local/include/msgpack/predef/platform.h +19 -0
- data/vendor/local/include/msgpack/predef/platform/mingw.h +70 -0
- data/vendor/local/include/msgpack/predef/platform/windows_desktop.h +44 -0
- data/vendor/local/include/msgpack/predef/platform/windows_phone.h +42 -0
- data/vendor/local/include/msgpack/predef/platform/windows_runtime.h +44 -0
- data/vendor/local/include/msgpack/predef/platform/windows_store.h +42 -0
- data/vendor/local/include/msgpack/predef/version.h +15 -0
- data/vendor/local/include/msgpack/predef/version_number.h +54 -0
- data/vendor/local/include/msgpack/preprocessor.hpp +19 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic.hpp +25 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/add.hpp +51 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/dec.hpp +288 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/detail/div_base.hpp +61 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/div.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/inc.hpp +288 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/mod.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/mul.hpp +53 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/sub.hpp +50 -0
- data/vendor/local/include/msgpack/preprocessor/array.hpp +32 -0
- data/vendor/local/include/msgpack/preprocessor/array/data.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/array/detail/get_data.hpp +55 -0
- data/vendor/local/include/msgpack/preprocessor/array/elem.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/array/enum.hpp +33 -0
- data/vendor/local/include/msgpack/preprocessor/array/insert.hpp +55 -0
- data/vendor/local/include/msgpack/preprocessor/array/pop_back.hpp +37 -0
- data/vendor/local/include/msgpack/preprocessor/array/pop_front.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/array/push_back.hpp +35 -0
- data/vendor/local/include/msgpack/preprocessor/array/push_front.hpp +35 -0
- data/vendor/local/include/msgpack/preprocessor/array/remove.hpp +54 -0
- data/vendor/local/include/msgpack/preprocessor/array/replace.hpp +49 -0
- data/vendor/local/include/msgpack/preprocessor/array/reverse.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/array/size.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/array/to_list.hpp +47 -0
- data/vendor/local/include/msgpack/preprocessor/array/to_seq.hpp +46 -0
- data/vendor/local/include/msgpack/preprocessor/array/to_tuple.hpp +33 -0
- data/vendor/local/include/msgpack/preprocessor/assert_msg.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/cat.hpp +35 -0
- data/vendor/local/include/msgpack/preprocessor/comma.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/comma_if.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/comparison.hpp +24 -0
- data/vendor/local/include/msgpack/preprocessor/comparison/equal.hpp +34 -0
- data/vendor/local/include/msgpack/preprocessor/comparison/greater.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/comparison/greater_equal.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/comparison/less.hpp +46 -0
- data/vendor/local/include/msgpack/preprocessor/comparison/less_equal.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/comparison/not_equal.hpp +814 -0
- data/vendor/local/include/msgpack/preprocessor/config/config.hpp +101 -0
- data/vendor/local/include/msgpack/preprocessor/config/limits.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/control.hpp +22 -0
- data/vendor/local/include/msgpack/preprocessor/control/deduce_d.hpp +22 -0
- data/vendor/local/include/msgpack/preprocessor/control/detail/dmc/while.hpp +536 -0
- data/vendor/local/include/msgpack/preprocessor/control/detail/edg/while.hpp +534 -0
- data/vendor/local/include/msgpack/preprocessor/control/detail/msvc/while.hpp +277 -0
- data/vendor/local/include/msgpack/preprocessor/control/detail/while.hpp +536 -0
- data/vendor/local/include/msgpack/preprocessor/control/expr_if.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/control/expr_iif.hpp +31 -0
- data/vendor/local/include/msgpack/preprocessor/control/if.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/control/iif.hpp +34 -0
- data/vendor/local/include/msgpack/preprocessor/control/while.hpp +312 -0
- data/vendor/local/include/msgpack/preprocessor/debug.hpp +18 -0
- data/vendor/local/include/msgpack/preprocessor/debug/assert.hpp +44 -0
- data/vendor/local/include/msgpack/preprocessor/debug/error.hpp +33 -0
- data/vendor/local/include/msgpack/preprocessor/debug/line.hpp +35 -0
- data/vendor/local/include/msgpack/preprocessor/dec.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/detail/auto_rec.hpp +293 -0
- data/vendor/local/include/msgpack/preprocessor/detail/check.hpp +48 -0
- data/vendor/local/include/msgpack/preprocessor/detail/dmc/auto_rec.hpp +286 -0
- data/vendor/local/include/msgpack/preprocessor/detail/is_binary.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/detail/is_nullary.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/detail/is_unary.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/detail/null.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/detail/split.hpp +35 -0
- data/vendor/local/include/msgpack/preprocessor/empty.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/enum.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/enum_params.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/enum_params_with_a_default.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/enum_params_with_defaults.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/enum_shifted.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/enum_shifted_params.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/expand.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/expr_if.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/facilities.hpp +23 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/apply.hpp +34 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/detail/is_empty.hpp +55 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/empty.hpp +23 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/expand.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/identity.hpp +23 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/intercept.hpp +277 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/is_1.hpp +23 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/is_empty.hpp +56 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/is_empty_or_1.hpp +31 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/is_empty_variadic.hpp +57 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/overload.hpp +25 -0
- data/vendor/local/include/msgpack/preprocessor/for.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/identity.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/if.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/inc.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/iterate.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/iteration.hpp +19 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower1.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower2.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower3.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower4.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower5.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper1.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper2.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper3.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper4.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper5.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/finish.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward1.hpp +1342 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward2.hpp +1338 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward3.hpp +1338 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward4.hpp +1338 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward5.hpp +1338 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse1.hpp +1296 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse2.hpp +1296 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse3.hpp +1296 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse4.hpp +1296 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse5.hpp +1296 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/local.hpp +812 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/rlocal.hpp +782 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/self.hpp +21 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/start.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/iterate.hpp +82 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/local.hpp +26 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/self.hpp +19 -0
- data/vendor/local/include/msgpack/preprocessor/library.hpp +36 -0
- data/vendor/local/include/msgpack/preprocessor/limits.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/list.hpp +37 -0
- data/vendor/local/include/msgpack/preprocessor/list/adt.hpp +73 -0
- data/vendor/local/include/msgpack/preprocessor/list/append.hpp +40 -0
- data/vendor/local/include/msgpack/preprocessor/list/at.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/list/cat.hpp +42 -0
- data/vendor/local/include/msgpack/preprocessor/list/detail/dmc/fold_left.hpp +279 -0
- data/vendor/local/include/msgpack/preprocessor/list/detail/edg/fold_left.hpp +536 -0
- data/vendor/local/include/msgpack/preprocessor/list/detail/edg/fold_right.hpp +794 -0
- data/vendor/local/include/msgpack/preprocessor/list/detail/fold_left.hpp +279 -0
- data/vendor/local/include/msgpack/preprocessor/list/detail/fold_right.hpp +277 -0
- data/vendor/local/include/msgpack/preprocessor/list/enum.hpp +41 -0
- data/vendor/local/include/msgpack/preprocessor/list/filter.hpp +54 -0
- data/vendor/local/include/msgpack/preprocessor/list/first_n.hpp +58 -0
- data/vendor/local/include/msgpack/preprocessor/list/fold_left.hpp +303 -0
- data/vendor/local/include/msgpack/preprocessor/list/fold_right.hpp +40 -0
- data/vendor/local/include/msgpack/preprocessor/list/for_each.hpp +49 -0
- data/vendor/local/include/msgpack/preprocessor/list/for_each_i.hpp +65 -0
- data/vendor/local/include/msgpack/preprocessor/list/for_each_product.hpp +141 -0
- data/vendor/local/include/msgpack/preprocessor/list/rest_n.hpp +55 -0
- data/vendor/local/include/msgpack/preprocessor/list/reverse.hpp +40 -0
- data/vendor/local/include/msgpack/preprocessor/list/size.hpp +58 -0
- data/vendor/local/include/msgpack/preprocessor/list/to_array.hpp +155 -0
- data/vendor/local/include/msgpack/preprocessor/list/to_seq.hpp +32 -0
- data/vendor/local/include/msgpack/preprocessor/list/to_tuple.hpp +61 -0
- data/vendor/local/include/msgpack/preprocessor/list/transform.hpp +49 -0
- data/vendor/local/include/msgpack/preprocessor/logical.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/logical/and.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/logical/bitand.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/logical/bitnor.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/logical/bitor.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/logical/bitxor.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/logical/bool.hpp +288 -0
- data/vendor/local/include/msgpack/preprocessor/logical/compl.hpp +36 -0
- data/vendor/local/include/msgpack/preprocessor/logical/nor.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/logical/not.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/logical/or.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/logical/xor.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/max.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/min.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation.hpp +22 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/comma.hpp +21 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/comma_if.hpp +31 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/detail/is_begin_parens.hpp +48 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/is_begin_parens.hpp +51 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/paren.hpp +23 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/paren_if.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/remove_parens.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/repeat.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/repeat_2nd.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/repeat_3rd.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/repeat_from_to.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/repeat_from_to_2nd.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/repeat_from_to_3rd.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/repetition.hpp +32 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/deduce_r.hpp +22 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/deduce_z.hpp +22 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/detail/dmc/for.hpp +536 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/detail/edg/for.hpp +534 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/detail/for.hpp +536 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/detail/msvc/for.hpp +277 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum.hpp +66 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_binary_params.hpp +54 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_params.hpp +41 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_params_with_a_default.hpp +25 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_params_with_defaults.hpp +24 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_shifted.hpp +68 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_shifted_binary_params.hpp +51 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_shifted_params.hpp +44 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_trailing.hpp +63 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_trailing_binary_params.hpp +53 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_trailing_params.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/for.hpp +306 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/repeat.hpp +825 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/repeat_from_to.hpp +87 -0
- data/vendor/local/include/msgpack/preprocessor/selection.hpp +18 -0
- data/vendor/local/include/msgpack/preprocessor/selection/max.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/selection/min.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/seq.hpp +44 -0
- data/vendor/local/include/msgpack/preprocessor/seq/cat.hpp +49 -0
- data/vendor/local/include/msgpack/preprocessor/seq/detail/binary_transform.hpp +48 -0
- data/vendor/local/include/msgpack/preprocessor/seq/detail/split.hpp +284 -0
- data/vendor/local/include/msgpack/preprocessor/seq/elem.hpp +304 -0
- data/vendor/local/include/msgpack/preprocessor/seq/enum.hpp +288 -0
- data/vendor/local/include/msgpack/preprocessor/seq/filter.hpp +54 -0
- data/vendor/local/include/msgpack/preprocessor/seq/first_n.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/seq/fold_left.hpp +1070 -0
- data/vendor/local/include/msgpack/preprocessor/seq/fold_right.hpp +288 -0
- data/vendor/local/include/msgpack/preprocessor/seq/for_each.hpp +60 -0
- data/vendor/local/include/msgpack/preprocessor/seq/for_each_i.hpp +61 -0
- data/vendor/local/include/msgpack/preprocessor/seq/for_each_product.hpp +126 -0
- data/vendor/local/include/msgpack/preprocessor/seq/insert.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/seq/pop_back.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/seq/pop_front.hpp +27 -0
- data/vendor/local/include/msgpack/preprocessor/seq/push_back.hpp +19 -0
- data/vendor/local/include/msgpack/preprocessor/seq/push_front.hpp +19 -0
- data/vendor/local/include/msgpack/preprocessor/seq/remove.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/seq/replace.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/seq/rest_n.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/seq/reverse.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/seq/seq.hpp +44 -0
- data/vendor/local/include/msgpack/preprocessor/seq/size.hpp +547 -0
- data/vendor/local/include/msgpack/preprocessor/seq/subseq.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/seq/to_array.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/seq/to_list.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/seq/to_tuple.hpp +27 -0
- data/vendor/local/include/msgpack/preprocessor/seq/transform.hpp +48 -0
- data/vendor/local/include/msgpack/preprocessor/seq/variadic_seq_to_seq.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/slot.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/slot/counter.hpp +25 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/counter.hpp +269 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/def.hpp +49 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/shared.hpp +247 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/slot1.hpp +267 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/slot2.hpp +267 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/slot3.hpp +267 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/slot4.hpp +267 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/slot5.hpp +267 -0
- data/vendor/local/include/msgpack/preprocessor/slot/slot.hpp +32 -0
- data/vendor/local/include/msgpack/preprocessor/stringize.hpp +33 -0
- data/vendor/local/include/msgpack/preprocessor/tuple.hpp +35 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/detail/is_single_return.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/eat.hpp +106 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/elem.hpp +201 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/enum.hpp +22 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/insert.hpp +37 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/pop_back.hpp +64 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/pop_front.hpp +65 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/push_back.hpp +31 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/push_front.hpp +32 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/rem.hpp +149 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/remove.hpp +64 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/replace.hpp +37 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/reverse.hpp +117 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/size.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/to_array.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/to_list.hpp +118 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/to_seq.hpp +119 -0
- data/vendor/local/include/msgpack/preprocessor/variadic.hpp +23 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/detail/is_single_return.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/elem.hpp +94 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/size.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/to_array.hpp +32 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/to_list.hpp +25 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/to_seq.hpp +25 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/to_tuple.hpp +24 -0
- data/vendor/local/include/msgpack/preprocessor/while.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/wstringize.hpp +29 -0
- data/vendor/local/include/msgpack/sbuffer.h +3 -11
- data/vendor/local/include/msgpack/sbuffer.hpp +34 -16
- data/vendor/local/include/msgpack/sysdep.h +102 -116
- data/vendor/local/include/msgpack/type.hpp +17 -0
- data/vendor/local/include/msgpack/unpack.h +3 -11
- data/vendor/local/include/msgpack/unpack.hpp +23 -47
- data/vendor/local/include/msgpack/unpack_define.h +3 -11
- data/vendor/local/include/msgpack/unpack_template.h +322 -328
- data/vendor/local/include/msgpack/util.h +3 -11
- data/vendor/local/include/msgpack/version.h +3 -11
- data/vendor/local/include/msgpack/version.hpp +3 -11
- data/vendor/local/include/msgpack/version_master.h +2 -2
- data/vendor/local/include/msgpack/versioning.hpp +27 -35
- data/vendor/local/include/msgpack/vrefbuffer.h +3 -11
- data/vendor/local/include/msgpack/vrefbuffer.hpp +7 -11
- data/vendor/local/include/msgpack/zbuffer.h +17 -25
- data/vendor/local/include/msgpack/zbuffer.hpp +9 -13
- data/vendor/local/include/msgpack/zone.h +3 -11
- data/vendor/local/include/msgpack/zone.hpp +3 -11
- data/vendor/local/lib/groonga/plugins/functions/string.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.la +41 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.la +4 -4
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +4 -4
- data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.la +4 -4
- data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.la +4 -4
- data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.la +4 -4
- data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.la +4 -4
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +4 -4
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +4 -4
- data/vendor/local/lib/groonga/scripts/ruby/accessor.rb +5 -0
- data/vendor/local/lib/groonga/scripts/ruby/command_line/grndb.rb +202 -90
- data/vendor/local/lib/groonga/scripts/ruby/command_line_parser.rb +156 -0
- data/vendor/local/lib/groonga/scripts/ruby/context.rb +2 -4
- data/vendor/local/lib/groonga/scripts/ruby/expression_rewriters.rb +5 -5
- data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +2 -1
- data/vendor/local/lib/groonga/scripts/ruby/fixed_size_column.rb +5 -0
- data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +5 -0
- data/vendor/local/lib/groonga/scripts/ruby/logger.rb +1 -3
- data/vendor/local/lib/groonga/scripts/ruby/require.rb +4 -1
- data/vendor/local/lib/groonga/scripts/ruby/scan_info.rb +3 -0
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +29 -1
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +18 -14
- data/vendor/local/lib/groonga/scripts/ruby/table.rb +8 -0
- data/vendor/local/lib/groonga/scripts/ruby/table_cursor.rb +2 -0
- data/vendor/local/lib/groonga/scripts/ruby/variable_size_column.rb +5 -0
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +4 -4
- data/vendor/local/lib/liblz4.a +0 -0
- data/vendor/local/lib/liblz4.dll +0 -0
- data/vendor/local/lib/liblz4.dll.1 +0 -0
- data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmecab.la +4 -4
- data/vendor/local/lib/libmsgpack.a +0 -0
- data/vendor/local/lib/libmsgpack.dll.a +0 -0
- data/vendor/local/lib/libmsgpack.la +2 -2
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.la +2 -2
- data/vendor/local/lib/libonig.a +0 -0
- data/vendor/local/lib/libonig.dll.a +0 -0
- data/vendor/local/lib/libonig.la +4 -4
- data/vendor/local/lib/libz.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
- data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
- data/vendor/local/lib/pkgconfig/msgpack.pc +2 -2
- data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
- data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
- data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
- data/vendor/local/sbin/groonga-httpd-restart +1 -1
- data/vendor/local/sbin/groonga-httpd.exe +0 -0
- data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +5 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +288 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +2 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/alias.txt +164 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_geo.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/command/command_version.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_copy.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_delete.txt +95 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_get.txt +96 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_set.txt +96 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_acquire.txt +102 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_clear.txt +10 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_release.txt +98 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_exist.txt +7 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_inspect.txt +385 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_remove.txt +140 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/reindex.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/schema.txt +627 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_list.txt +3 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/configuration.txt +50 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/grndb.txt +41 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/operations/geolocation_search.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/regular_expression.txt +4 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/types.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/server/memcached.txt +1 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/server/package.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/basic.css +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/pygments.css +2 -0
- data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/client.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/community.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +57 -57
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +16 -16
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +16 -16
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/development.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/genindex.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/index.html +117 -97
- data/vendor/local/share/doc/groonga/en/html/install.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +20 -20
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +15 -15
- data/vendor/local/share/doc/groonga/en/html/install/others.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +13 -13
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +20 -20
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +15 -15
- data/vendor/local/share/doc/groonga/en/html/limitations.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news.html +350 -102
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/2.x.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/news/3.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/4.x.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +117 -97
- data/vendor/local/share/doc/groonga/en/html/reference/alias.html +447 -0
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +40 -40
- data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +28 -28
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +21 -21
- data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/column.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +61 -53
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +19 -19
- data/vendor/local/share/doc/groonga/en/html/reference/command/pretty_print.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +22 -22
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_delete.html +255 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_get.html +239 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_set.html +237 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +35 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +31 -31
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +46 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +60 -60
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +35 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_acquire.html +247 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +43 -42
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_release.html +246 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +31 -31
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +33 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +53 -53
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +43 -43
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +63 -63
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +135 -135
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +43 -43
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +48 -48
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +41 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +43 -38
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_inspect.html +592 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_remove.html +324 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +28 -28
- data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/reindex.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +37 -37
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +33 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/schema.html +1188 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +187 -187
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +28 -28
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +41 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +56 -56
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +52 -52
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +35 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +42 -42
- data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +37 -37
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +55 -55
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/configuration.html +178 -0
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +43 -10
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +13 -13
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +20 -20
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/prefix_rk_search.html +15 -15
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +47 -47
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +41 -41
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/operations.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/operations/prefix_rk_search.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +16 -16
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +17 -17
- data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +18 -18
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +35 -35
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +40 -40
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +31 -31
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +46 -46
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/search.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/server/http.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +17 -17
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/server/memcached.html +8 -7
- data/vendor/local/share/doc/groonga/en/html/server/package.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/spec.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +13 -13
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +16 -16
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +13 -13
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +13 -13
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +18 -18
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +18 -18
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +5 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +288 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +2 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/alias.txt +164 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_geo.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/command/command_version.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_copy.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_delete.txt +95 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_get.txt +96 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_set.txt +96 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_acquire.txt +102 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_clear.txt +10 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_release.txt +98 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_exist.txt +7 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_inspect.txt +385 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_remove.txt +140 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/reindex.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/schema.txt +627 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_list.txt +3 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/configuration.txt +50 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/grndb.txt +41 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/operations/geolocation_search.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/regular_expression.txt +4 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/types.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/server/memcached.txt +1 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/server/package.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/pygments.css +2 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/client.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/community.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +57 -57
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/development.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/index.html +116 -96
- data/vendor/local/share/doc/groonga/ja/html/install.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +20 -20
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +15 -15
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +24 -24
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +13 -13
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +20 -20
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +15 -15
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news.html +329 -100
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +116 -96
- data/vendor/local/share/doc/groonga/ja/html/reference/alias.html +419 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +40 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +24 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +21 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/column.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +56 -48
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +15 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/command/pretty_print.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +22 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_delete.html +254 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_get.html +235 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_set.html +234 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +35 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +46 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +60 -60
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +37 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_acquire.html +242 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +43 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_release.html +242 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +33 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +53 -53
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +43 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +63 -63
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +135 -135
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +43 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +48 -48
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +41 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +41 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_inspect.html +595 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_remove.html +306 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/reindex.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +37 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +33 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/schema.html +1196 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +187 -187
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +33 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +45 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +56 -56
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +52 -52
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +35 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +42 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +37 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +55 -55
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/configuration.html +167 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +35 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +35 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +13 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +20 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html +15 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +48 -48
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +41 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +17 -17
- data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +18 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +35 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +40 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +46 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/search.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +8 -7
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/spec.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +13 -13
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +13 -13
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +13 -13
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +18 -18
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +18 -18
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +16 -16
- data/vendor/local/share/groonga/html/admin.old/index.html +1 -1
- data/vendor/local/share/groonga/html/admin.old/index.ja.html +1 -1
- data/vendor/local/share/groonga/html/admin.old/js/{jquery.flot-0.7.js → jquery.flot-0.8.3.js} +1540 -817
- data/vendor/local/share/groonga/html/admin.old/js/jquery.flot.license.txt +1 -1
- data/vendor/local/share/groonga/mruby/LEGAL +29 -29
- data/vendor/local/share/license/mruby/AUTHORS +3 -1
- data/vendor/local/share/license/mruby/MITL +1 -1
- data/vendor/local/share/license/mruby/README.md +13 -45
- data/vendor/local/share/license/msgpack/COPYING +4 -13
- data/vendor/local/share/license/msgpack/LICENSE_1_0.txt +23 -0
- data/vendor/local/share/license/msgpack/NOTICE +14 -0
- data/vendor/local/share/license/msgpack/{README → README.md} +4 -4
- data/vendor/local/share/man/ja/man1/groonga.1 +3429 -398
- data/vendor/local/share/man/man1/groonga.1 +3670 -500
- metadata +523 -89
- data/lib/2.0/groonga.so +0 -0
- data/vendor/local/bin/libmecab-1.dll +0 -0
- data/vendor/local/bin/libwinpthread-1.dll +0 -0
- data/vendor/local/include/groonga/groonga/conf.h +0 -42
- data/vendor/local/include/msgpack/adaptor/bool_fwd.hpp +0 -39
- data/vendor/local/include/msgpack/adaptor/char_ptr_fwd.hpp +0 -43
- data/vendor/local/include/msgpack/adaptor/cpp11/array_char_fwd.hpp +0 -45
- data/vendor/local/include/msgpack/adaptor/cpp11/array_fwd.hpp +0 -44
- data/vendor/local/include/msgpack/adaptor/cpp11/forward_list_fwd.hpp +0 -44
- data/vendor/local/include/msgpack/adaptor/cpp11/tuple_fwd.hpp +0 -62
- data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map_fwd.hpp +0 -53
- data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set_fwd.hpp +0 -52
- data/vendor/local/include/msgpack/adaptor/deque_fwd.hpp +0 -40
- data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple_fwd.hpp +0 -4341
- data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple_fwd.hpp +0 -84
- data/vendor/local/include/msgpack/adaptor/fixint_fwd.hpp +0 -100
- data/vendor/local/include/msgpack/adaptor/float_fwd.hpp +0 -44
- data/vendor/local/include/msgpack/adaptor/int_fwd.hpp +0 -100
- data/vendor/local/include/msgpack/adaptor/list_fwd.hpp +0 -40
- data/vendor/local/include/msgpack/adaptor/map_fwd.hpp +0 -69
- data/vendor/local/include/msgpack/adaptor/msgpack_tuple_fwd.hpp +0 -29
- data/vendor/local/include/msgpack/adaptor/nil_fwd.hpp +0 -51
- data/vendor/local/include/msgpack/adaptor/pair_fwd.hpp +0 -42
- data/vendor/local/include/msgpack/adaptor/raw_fwd.hpp +0 -50
- data/vendor/local/include/msgpack/adaptor/set_fwd.hpp +0 -52
- data/vendor/local/include/msgpack/adaptor/string_fwd.hpp +0 -42
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_map_fwd.hpp +0 -75
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_set_fwd.hpp +0 -75
- data/vendor/local/include/msgpack/adaptor/vector_bool_fwd.hpp +0 -40
- data/vendor/local/include/msgpack/adaptor/vector_char_fwd.hpp +0 -42
- data/vendor/local/include/msgpack/adaptor/vector_fwd.hpp +0 -42
- data/vendor/local/include/msgpack_fwd.hpp +0 -28
- data/vendor/local/share/license/msgpack/LICENSE +0 -202
@@ -0,0 +1,1296 @@
|
|
1
|
+
# /* **************************************************************************
|
2
|
+
# * *
|
3
|
+
# * (C) Copyright Paul Mensonides 2002.
|
4
|
+
# * Distributed under the Boost Software License, Version 1.0. (See
|
5
|
+
# * accompanying file LICENSE_1_0.txt or copy at
|
6
|
+
# * http://www.boost.org/LICENSE_1_0.txt)
|
7
|
+
# * *
|
8
|
+
# ************************************************************************** */
|
9
|
+
#
|
10
|
+
# /* See http://www.boost.org for most recent version. */
|
11
|
+
#
|
12
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 256 && MSGPACK_PP_ITERATION_START_5 >= 256
|
13
|
+
# define MSGPACK_PP_ITERATION_5 256
|
14
|
+
# include MSGPACK_PP_FILENAME_5
|
15
|
+
# undef MSGPACK_PP_ITERATION_5
|
16
|
+
# endif
|
17
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 255 && MSGPACK_PP_ITERATION_START_5 >= 255
|
18
|
+
# define MSGPACK_PP_ITERATION_5 255
|
19
|
+
# include MSGPACK_PP_FILENAME_5
|
20
|
+
# undef MSGPACK_PP_ITERATION_5
|
21
|
+
# endif
|
22
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 254 && MSGPACK_PP_ITERATION_START_5 >= 254
|
23
|
+
# define MSGPACK_PP_ITERATION_5 254
|
24
|
+
# include MSGPACK_PP_FILENAME_5
|
25
|
+
# undef MSGPACK_PP_ITERATION_5
|
26
|
+
# endif
|
27
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 253 && MSGPACK_PP_ITERATION_START_5 >= 253
|
28
|
+
# define MSGPACK_PP_ITERATION_5 253
|
29
|
+
# include MSGPACK_PP_FILENAME_5
|
30
|
+
# undef MSGPACK_PP_ITERATION_5
|
31
|
+
# endif
|
32
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 252 && MSGPACK_PP_ITERATION_START_5 >= 252
|
33
|
+
# define MSGPACK_PP_ITERATION_5 252
|
34
|
+
# include MSGPACK_PP_FILENAME_5
|
35
|
+
# undef MSGPACK_PP_ITERATION_5
|
36
|
+
# endif
|
37
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 251 && MSGPACK_PP_ITERATION_START_5 >= 251
|
38
|
+
# define MSGPACK_PP_ITERATION_5 251
|
39
|
+
# include MSGPACK_PP_FILENAME_5
|
40
|
+
# undef MSGPACK_PP_ITERATION_5
|
41
|
+
# endif
|
42
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 250 && MSGPACK_PP_ITERATION_START_5 >= 250
|
43
|
+
# define MSGPACK_PP_ITERATION_5 250
|
44
|
+
# include MSGPACK_PP_FILENAME_5
|
45
|
+
# undef MSGPACK_PP_ITERATION_5
|
46
|
+
# endif
|
47
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 249 && MSGPACK_PP_ITERATION_START_5 >= 249
|
48
|
+
# define MSGPACK_PP_ITERATION_5 249
|
49
|
+
# include MSGPACK_PP_FILENAME_5
|
50
|
+
# undef MSGPACK_PP_ITERATION_5
|
51
|
+
# endif
|
52
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 248 && MSGPACK_PP_ITERATION_START_5 >= 248
|
53
|
+
# define MSGPACK_PP_ITERATION_5 248
|
54
|
+
# include MSGPACK_PP_FILENAME_5
|
55
|
+
# undef MSGPACK_PP_ITERATION_5
|
56
|
+
# endif
|
57
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 247 && MSGPACK_PP_ITERATION_START_5 >= 247
|
58
|
+
# define MSGPACK_PP_ITERATION_5 247
|
59
|
+
# include MSGPACK_PP_FILENAME_5
|
60
|
+
# undef MSGPACK_PP_ITERATION_5
|
61
|
+
# endif
|
62
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 246 && MSGPACK_PP_ITERATION_START_5 >= 246
|
63
|
+
# define MSGPACK_PP_ITERATION_5 246
|
64
|
+
# include MSGPACK_PP_FILENAME_5
|
65
|
+
# undef MSGPACK_PP_ITERATION_5
|
66
|
+
# endif
|
67
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 245 && MSGPACK_PP_ITERATION_START_5 >= 245
|
68
|
+
# define MSGPACK_PP_ITERATION_5 245
|
69
|
+
# include MSGPACK_PP_FILENAME_5
|
70
|
+
# undef MSGPACK_PP_ITERATION_5
|
71
|
+
# endif
|
72
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 244 && MSGPACK_PP_ITERATION_START_5 >= 244
|
73
|
+
# define MSGPACK_PP_ITERATION_5 244
|
74
|
+
# include MSGPACK_PP_FILENAME_5
|
75
|
+
# undef MSGPACK_PP_ITERATION_5
|
76
|
+
# endif
|
77
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 243 && MSGPACK_PP_ITERATION_START_5 >= 243
|
78
|
+
# define MSGPACK_PP_ITERATION_5 243
|
79
|
+
# include MSGPACK_PP_FILENAME_5
|
80
|
+
# undef MSGPACK_PP_ITERATION_5
|
81
|
+
# endif
|
82
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 242 && MSGPACK_PP_ITERATION_START_5 >= 242
|
83
|
+
# define MSGPACK_PP_ITERATION_5 242
|
84
|
+
# include MSGPACK_PP_FILENAME_5
|
85
|
+
# undef MSGPACK_PP_ITERATION_5
|
86
|
+
# endif
|
87
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 241 && MSGPACK_PP_ITERATION_START_5 >= 241
|
88
|
+
# define MSGPACK_PP_ITERATION_5 241
|
89
|
+
# include MSGPACK_PP_FILENAME_5
|
90
|
+
# undef MSGPACK_PP_ITERATION_5
|
91
|
+
# endif
|
92
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 240 && MSGPACK_PP_ITERATION_START_5 >= 240
|
93
|
+
# define MSGPACK_PP_ITERATION_5 240
|
94
|
+
# include MSGPACK_PP_FILENAME_5
|
95
|
+
# undef MSGPACK_PP_ITERATION_5
|
96
|
+
# endif
|
97
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 239 && MSGPACK_PP_ITERATION_START_5 >= 239
|
98
|
+
# define MSGPACK_PP_ITERATION_5 239
|
99
|
+
# include MSGPACK_PP_FILENAME_5
|
100
|
+
# undef MSGPACK_PP_ITERATION_5
|
101
|
+
# endif
|
102
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 238 && MSGPACK_PP_ITERATION_START_5 >= 238
|
103
|
+
# define MSGPACK_PP_ITERATION_5 238
|
104
|
+
# include MSGPACK_PP_FILENAME_5
|
105
|
+
# undef MSGPACK_PP_ITERATION_5
|
106
|
+
# endif
|
107
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 237 && MSGPACK_PP_ITERATION_START_5 >= 237
|
108
|
+
# define MSGPACK_PP_ITERATION_5 237
|
109
|
+
# include MSGPACK_PP_FILENAME_5
|
110
|
+
# undef MSGPACK_PP_ITERATION_5
|
111
|
+
# endif
|
112
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 236 && MSGPACK_PP_ITERATION_START_5 >= 236
|
113
|
+
# define MSGPACK_PP_ITERATION_5 236
|
114
|
+
# include MSGPACK_PP_FILENAME_5
|
115
|
+
# undef MSGPACK_PP_ITERATION_5
|
116
|
+
# endif
|
117
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 235 && MSGPACK_PP_ITERATION_START_5 >= 235
|
118
|
+
# define MSGPACK_PP_ITERATION_5 235
|
119
|
+
# include MSGPACK_PP_FILENAME_5
|
120
|
+
# undef MSGPACK_PP_ITERATION_5
|
121
|
+
# endif
|
122
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 234 && MSGPACK_PP_ITERATION_START_5 >= 234
|
123
|
+
# define MSGPACK_PP_ITERATION_5 234
|
124
|
+
# include MSGPACK_PP_FILENAME_5
|
125
|
+
# undef MSGPACK_PP_ITERATION_5
|
126
|
+
# endif
|
127
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 233 && MSGPACK_PP_ITERATION_START_5 >= 233
|
128
|
+
# define MSGPACK_PP_ITERATION_5 233
|
129
|
+
# include MSGPACK_PP_FILENAME_5
|
130
|
+
# undef MSGPACK_PP_ITERATION_5
|
131
|
+
# endif
|
132
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 232 && MSGPACK_PP_ITERATION_START_5 >= 232
|
133
|
+
# define MSGPACK_PP_ITERATION_5 232
|
134
|
+
# include MSGPACK_PP_FILENAME_5
|
135
|
+
# undef MSGPACK_PP_ITERATION_5
|
136
|
+
# endif
|
137
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 231 && MSGPACK_PP_ITERATION_START_5 >= 231
|
138
|
+
# define MSGPACK_PP_ITERATION_5 231
|
139
|
+
# include MSGPACK_PP_FILENAME_5
|
140
|
+
# undef MSGPACK_PP_ITERATION_5
|
141
|
+
# endif
|
142
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 230 && MSGPACK_PP_ITERATION_START_5 >= 230
|
143
|
+
# define MSGPACK_PP_ITERATION_5 230
|
144
|
+
# include MSGPACK_PP_FILENAME_5
|
145
|
+
# undef MSGPACK_PP_ITERATION_5
|
146
|
+
# endif
|
147
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 229 && MSGPACK_PP_ITERATION_START_5 >= 229
|
148
|
+
# define MSGPACK_PP_ITERATION_5 229
|
149
|
+
# include MSGPACK_PP_FILENAME_5
|
150
|
+
# undef MSGPACK_PP_ITERATION_5
|
151
|
+
# endif
|
152
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 228 && MSGPACK_PP_ITERATION_START_5 >= 228
|
153
|
+
# define MSGPACK_PP_ITERATION_5 228
|
154
|
+
# include MSGPACK_PP_FILENAME_5
|
155
|
+
# undef MSGPACK_PP_ITERATION_5
|
156
|
+
# endif
|
157
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 227 && MSGPACK_PP_ITERATION_START_5 >= 227
|
158
|
+
# define MSGPACK_PP_ITERATION_5 227
|
159
|
+
# include MSGPACK_PP_FILENAME_5
|
160
|
+
# undef MSGPACK_PP_ITERATION_5
|
161
|
+
# endif
|
162
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 226 && MSGPACK_PP_ITERATION_START_5 >= 226
|
163
|
+
# define MSGPACK_PP_ITERATION_5 226
|
164
|
+
# include MSGPACK_PP_FILENAME_5
|
165
|
+
# undef MSGPACK_PP_ITERATION_5
|
166
|
+
# endif
|
167
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 225 && MSGPACK_PP_ITERATION_START_5 >= 225
|
168
|
+
# define MSGPACK_PP_ITERATION_5 225
|
169
|
+
# include MSGPACK_PP_FILENAME_5
|
170
|
+
# undef MSGPACK_PP_ITERATION_5
|
171
|
+
# endif
|
172
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 224 && MSGPACK_PP_ITERATION_START_5 >= 224
|
173
|
+
# define MSGPACK_PP_ITERATION_5 224
|
174
|
+
# include MSGPACK_PP_FILENAME_5
|
175
|
+
# undef MSGPACK_PP_ITERATION_5
|
176
|
+
# endif
|
177
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 223 && MSGPACK_PP_ITERATION_START_5 >= 223
|
178
|
+
# define MSGPACK_PP_ITERATION_5 223
|
179
|
+
# include MSGPACK_PP_FILENAME_5
|
180
|
+
# undef MSGPACK_PP_ITERATION_5
|
181
|
+
# endif
|
182
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 222 && MSGPACK_PP_ITERATION_START_5 >= 222
|
183
|
+
# define MSGPACK_PP_ITERATION_5 222
|
184
|
+
# include MSGPACK_PP_FILENAME_5
|
185
|
+
# undef MSGPACK_PP_ITERATION_5
|
186
|
+
# endif
|
187
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 221 && MSGPACK_PP_ITERATION_START_5 >= 221
|
188
|
+
# define MSGPACK_PP_ITERATION_5 221
|
189
|
+
# include MSGPACK_PP_FILENAME_5
|
190
|
+
# undef MSGPACK_PP_ITERATION_5
|
191
|
+
# endif
|
192
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 220 && MSGPACK_PP_ITERATION_START_5 >= 220
|
193
|
+
# define MSGPACK_PP_ITERATION_5 220
|
194
|
+
# include MSGPACK_PP_FILENAME_5
|
195
|
+
# undef MSGPACK_PP_ITERATION_5
|
196
|
+
# endif
|
197
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 219 && MSGPACK_PP_ITERATION_START_5 >= 219
|
198
|
+
# define MSGPACK_PP_ITERATION_5 219
|
199
|
+
# include MSGPACK_PP_FILENAME_5
|
200
|
+
# undef MSGPACK_PP_ITERATION_5
|
201
|
+
# endif
|
202
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 218 && MSGPACK_PP_ITERATION_START_5 >= 218
|
203
|
+
# define MSGPACK_PP_ITERATION_5 218
|
204
|
+
# include MSGPACK_PP_FILENAME_5
|
205
|
+
# undef MSGPACK_PP_ITERATION_5
|
206
|
+
# endif
|
207
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 217 && MSGPACK_PP_ITERATION_START_5 >= 217
|
208
|
+
# define MSGPACK_PP_ITERATION_5 217
|
209
|
+
# include MSGPACK_PP_FILENAME_5
|
210
|
+
# undef MSGPACK_PP_ITERATION_5
|
211
|
+
# endif
|
212
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 216 && MSGPACK_PP_ITERATION_START_5 >= 216
|
213
|
+
# define MSGPACK_PP_ITERATION_5 216
|
214
|
+
# include MSGPACK_PP_FILENAME_5
|
215
|
+
# undef MSGPACK_PP_ITERATION_5
|
216
|
+
# endif
|
217
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 215 && MSGPACK_PP_ITERATION_START_5 >= 215
|
218
|
+
# define MSGPACK_PP_ITERATION_5 215
|
219
|
+
# include MSGPACK_PP_FILENAME_5
|
220
|
+
# undef MSGPACK_PP_ITERATION_5
|
221
|
+
# endif
|
222
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 214 && MSGPACK_PP_ITERATION_START_5 >= 214
|
223
|
+
# define MSGPACK_PP_ITERATION_5 214
|
224
|
+
# include MSGPACK_PP_FILENAME_5
|
225
|
+
# undef MSGPACK_PP_ITERATION_5
|
226
|
+
# endif
|
227
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 213 && MSGPACK_PP_ITERATION_START_5 >= 213
|
228
|
+
# define MSGPACK_PP_ITERATION_5 213
|
229
|
+
# include MSGPACK_PP_FILENAME_5
|
230
|
+
# undef MSGPACK_PP_ITERATION_5
|
231
|
+
# endif
|
232
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 212 && MSGPACK_PP_ITERATION_START_5 >= 212
|
233
|
+
# define MSGPACK_PP_ITERATION_5 212
|
234
|
+
# include MSGPACK_PP_FILENAME_5
|
235
|
+
# undef MSGPACK_PP_ITERATION_5
|
236
|
+
# endif
|
237
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 211 && MSGPACK_PP_ITERATION_START_5 >= 211
|
238
|
+
# define MSGPACK_PP_ITERATION_5 211
|
239
|
+
# include MSGPACK_PP_FILENAME_5
|
240
|
+
# undef MSGPACK_PP_ITERATION_5
|
241
|
+
# endif
|
242
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 210 && MSGPACK_PP_ITERATION_START_5 >= 210
|
243
|
+
# define MSGPACK_PP_ITERATION_5 210
|
244
|
+
# include MSGPACK_PP_FILENAME_5
|
245
|
+
# undef MSGPACK_PP_ITERATION_5
|
246
|
+
# endif
|
247
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 209 && MSGPACK_PP_ITERATION_START_5 >= 209
|
248
|
+
# define MSGPACK_PP_ITERATION_5 209
|
249
|
+
# include MSGPACK_PP_FILENAME_5
|
250
|
+
# undef MSGPACK_PP_ITERATION_5
|
251
|
+
# endif
|
252
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 208 && MSGPACK_PP_ITERATION_START_5 >= 208
|
253
|
+
# define MSGPACK_PP_ITERATION_5 208
|
254
|
+
# include MSGPACK_PP_FILENAME_5
|
255
|
+
# undef MSGPACK_PP_ITERATION_5
|
256
|
+
# endif
|
257
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 207 && MSGPACK_PP_ITERATION_START_5 >= 207
|
258
|
+
# define MSGPACK_PP_ITERATION_5 207
|
259
|
+
# include MSGPACK_PP_FILENAME_5
|
260
|
+
# undef MSGPACK_PP_ITERATION_5
|
261
|
+
# endif
|
262
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 206 && MSGPACK_PP_ITERATION_START_5 >= 206
|
263
|
+
# define MSGPACK_PP_ITERATION_5 206
|
264
|
+
# include MSGPACK_PP_FILENAME_5
|
265
|
+
# undef MSGPACK_PP_ITERATION_5
|
266
|
+
# endif
|
267
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 205 && MSGPACK_PP_ITERATION_START_5 >= 205
|
268
|
+
# define MSGPACK_PP_ITERATION_5 205
|
269
|
+
# include MSGPACK_PP_FILENAME_5
|
270
|
+
# undef MSGPACK_PP_ITERATION_5
|
271
|
+
# endif
|
272
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 204 && MSGPACK_PP_ITERATION_START_5 >= 204
|
273
|
+
# define MSGPACK_PP_ITERATION_5 204
|
274
|
+
# include MSGPACK_PP_FILENAME_5
|
275
|
+
# undef MSGPACK_PP_ITERATION_5
|
276
|
+
# endif
|
277
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 203 && MSGPACK_PP_ITERATION_START_5 >= 203
|
278
|
+
# define MSGPACK_PP_ITERATION_5 203
|
279
|
+
# include MSGPACK_PP_FILENAME_5
|
280
|
+
# undef MSGPACK_PP_ITERATION_5
|
281
|
+
# endif
|
282
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 202 && MSGPACK_PP_ITERATION_START_5 >= 202
|
283
|
+
# define MSGPACK_PP_ITERATION_5 202
|
284
|
+
# include MSGPACK_PP_FILENAME_5
|
285
|
+
# undef MSGPACK_PP_ITERATION_5
|
286
|
+
# endif
|
287
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 201 && MSGPACK_PP_ITERATION_START_5 >= 201
|
288
|
+
# define MSGPACK_PP_ITERATION_5 201
|
289
|
+
# include MSGPACK_PP_FILENAME_5
|
290
|
+
# undef MSGPACK_PP_ITERATION_5
|
291
|
+
# endif
|
292
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 200 && MSGPACK_PP_ITERATION_START_5 >= 200
|
293
|
+
# define MSGPACK_PP_ITERATION_5 200
|
294
|
+
# include MSGPACK_PP_FILENAME_5
|
295
|
+
# undef MSGPACK_PP_ITERATION_5
|
296
|
+
# endif
|
297
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 199 && MSGPACK_PP_ITERATION_START_5 >= 199
|
298
|
+
# define MSGPACK_PP_ITERATION_5 199
|
299
|
+
# include MSGPACK_PP_FILENAME_5
|
300
|
+
# undef MSGPACK_PP_ITERATION_5
|
301
|
+
# endif
|
302
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 198 && MSGPACK_PP_ITERATION_START_5 >= 198
|
303
|
+
# define MSGPACK_PP_ITERATION_5 198
|
304
|
+
# include MSGPACK_PP_FILENAME_5
|
305
|
+
# undef MSGPACK_PP_ITERATION_5
|
306
|
+
# endif
|
307
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 197 && MSGPACK_PP_ITERATION_START_5 >= 197
|
308
|
+
# define MSGPACK_PP_ITERATION_5 197
|
309
|
+
# include MSGPACK_PP_FILENAME_5
|
310
|
+
# undef MSGPACK_PP_ITERATION_5
|
311
|
+
# endif
|
312
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 196 && MSGPACK_PP_ITERATION_START_5 >= 196
|
313
|
+
# define MSGPACK_PP_ITERATION_5 196
|
314
|
+
# include MSGPACK_PP_FILENAME_5
|
315
|
+
# undef MSGPACK_PP_ITERATION_5
|
316
|
+
# endif
|
317
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 195 && MSGPACK_PP_ITERATION_START_5 >= 195
|
318
|
+
# define MSGPACK_PP_ITERATION_5 195
|
319
|
+
# include MSGPACK_PP_FILENAME_5
|
320
|
+
# undef MSGPACK_PP_ITERATION_5
|
321
|
+
# endif
|
322
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 194 && MSGPACK_PP_ITERATION_START_5 >= 194
|
323
|
+
# define MSGPACK_PP_ITERATION_5 194
|
324
|
+
# include MSGPACK_PP_FILENAME_5
|
325
|
+
# undef MSGPACK_PP_ITERATION_5
|
326
|
+
# endif
|
327
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 193 && MSGPACK_PP_ITERATION_START_5 >= 193
|
328
|
+
# define MSGPACK_PP_ITERATION_5 193
|
329
|
+
# include MSGPACK_PP_FILENAME_5
|
330
|
+
# undef MSGPACK_PP_ITERATION_5
|
331
|
+
# endif
|
332
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 192 && MSGPACK_PP_ITERATION_START_5 >= 192
|
333
|
+
# define MSGPACK_PP_ITERATION_5 192
|
334
|
+
# include MSGPACK_PP_FILENAME_5
|
335
|
+
# undef MSGPACK_PP_ITERATION_5
|
336
|
+
# endif
|
337
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 191 && MSGPACK_PP_ITERATION_START_5 >= 191
|
338
|
+
# define MSGPACK_PP_ITERATION_5 191
|
339
|
+
# include MSGPACK_PP_FILENAME_5
|
340
|
+
# undef MSGPACK_PP_ITERATION_5
|
341
|
+
# endif
|
342
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 190 && MSGPACK_PP_ITERATION_START_5 >= 190
|
343
|
+
# define MSGPACK_PP_ITERATION_5 190
|
344
|
+
# include MSGPACK_PP_FILENAME_5
|
345
|
+
# undef MSGPACK_PP_ITERATION_5
|
346
|
+
# endif
|
347
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 189 && MSGPACK_PP_ITERATION_START_5 >= 189
|
348
|
+
# define MSGPACK_PP_ITERATION_5 189
|
349
|
+
# include MSGPACK_PP_FILENAME_5
|
350
|
+
# undef MSGPACK_PP_ITERATION_5
|
351
|
+
# endif
|
352
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 188 && MSGPACK_PP_ITERATION_START_5 >= 188
|
353
|
+
# define MSGPACK_PP_ITERATION_5 188
|
354
|
+
# include MSGPACK_PP_FILENAME_5
|
355
|
+
# undef MSGPACK_PP_ITERATION_5
|
356
|
+
# endif
|
357
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 187 && MSGPACK_PP_ITERATION_START_5 >= 187
|
358
|
+
# define MSGPACK_PP_ITERATION_5 187
|
359
|
+
# include MSGPACK_PP_FILENAME_5
|
360
|
+
# undef MSGPACK_PP_ITERATION_5
|
361
|
+
# endif
|
362
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 186 && MSGPACK_PP_ITERATION_START_5 >= 186
|
363
|
+
# define MSGPACK_PP_ITERATION_5 186
|
364
|
+
# include MSGPACK_PP_FILENAME_5
|
365
|
+
# undef MSGPACK_PP_ITERATION_5
|
366
|
+
# endif
|
367
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 185 && MSGPACK_PP_ITERATION_START_5 >= 185
|
368
|
+
# define MSGPACK_PP_ITERATION_5 185
|
369
|
+
# include MSGPACK_PP_FILENAME_5
|
370
|
+
# undef MSGPACK_PP_ITERATION_5
|
371
|
+
# endif
|
372
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 184 && MSGPACK_PP_ITERATION_START_5 >= 184
|
373
|
+
# define MSGPACK_PP_ITERATION_5 184
|
374
|
+
# include MSGPACK_PP_FILENAME_5
|
375
|
+
# undef MSGPACK_PP_ITERATION_5
|
376
|
+
# endif
|
377
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 183 && MSGPACK_PP_ITERATION_START_5 >= 183
|
378
|
+
# define MSGPACK_PP_ITERATION_5 183
|
379
|
+
# include MSGPACK_PP_FILENAME_5
|
380
|
+
# undef MSGPACK_PP_ITERATION_5
|
381
|
+
# endif
|
382
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 182 && MSGPACK_PP_ITERATION_START_5 >= 182
|
383
|
+
# define MSGPACK_PP_ITERATION_5 182
|
384
|
+
# include MSGPACK_PP_FILENAME_5
|
385
|
+
# undef MSGPACK_PP_ITERATION_5
|
386
|
+
# endif
|
387
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 181 && MSGPACK_PP_ITERATION_START_5 >= 181
|
388
|
+
# define MSGPACK_PP_ITERATION_5 181
|
389
|
+
# include MSGPACK_PP_FILENAME_5
|
390
|
+
# undef MSGPACK_PP_ITERATION_5
|
391
|
+
# endif
|
392
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 180 && MSGPACK_PP_ITERATION_START_5 >= 180
|
393
|
+
# define MSGPACK_PP_ITERATION_5 180
|
394
|
+
# include MSGPACK_PP_FILENAME_5
|
395
|
+
# undef MSGPACK_PP_ITERATION_5
|
396
|
+
# endif
|
397
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 179 && MSGPACK_PP_ITERATION_START_5 >= 179
|
398
|
+
# define MSGPACK_PP_ITERATION_5 179
|
399
|
+
# include MSGPACK_PP_FILENAME_5
|
400
|
+
# undef MSGPACK_PP_ITERATION_5
|
401
|
+
# endif
|
402
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 178 && MSGPACK_PP_ITERATION_START_5 >= 178
|
403
|
+
# define MSGPACK_PP_ITERATION_5 178
|
404
|
+
# include MSGPACK_PP_FILENAME_5
|
405
|
+
# undef MSGPACK_PP_ITERATION_5
|
406
|
+
# endif
|
407
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 177 && MSGPACK_PP_ITERATION_START_5 >= 177
|
408
|
+
# define MSGPACK_PP_ITERATION_5 177
|
409
|
+
# include MSGPACK_PP_FILENAME_5
|
410
|
+
# undef MSGPACK_PP_ITERATION_5
|
411
|
+
# endif
|
412
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 176 && MSGPACK_PP_ITERATION_START_5 >= 176
|
413
|
+
# define MSGPACK_PP_ITERATION_5 176
|
414
|
+
# include MSGPACK_PP_FILENAME_5
|
415
|
+
# undef MSGPACK_PP_ITERATION_5
|
416
|
+
# endif
|
417
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 175 && MSGPACK_PP_ITERATION_START_5 >= 175
|
418
|
+
# define MSGPACK_PP_ITERATION_5 175
|
419
|
+
# include MSGPACK_PP_FILENAME_5
|
420
|
+
# undef MSGPACK_PP_ITERATION_5
|
421
|
+
# endif
|
422
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 174 && MSGPACK_PP_ITERATION_START_5 >= 174
|
423
|
+
# define MSGPACK_PP_ITERATION_5 174
|
424
|
+
# include MSGPACK_PP_FILENAME_5
|
425
|
+
# undef MSGPACK_PP_ITERATION_5
|
426
|
+
# endif
|
427
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 173 && MSGPACK_PP_ITERATION_START_5 >= 173
|
428
|
+
# define MSGPACK_PP_ITERATION_5 173
|
429
|
+
# include MSGPACK_PP_FILENAME_5
|
430
|
+
# undef MSGPACK_PP_ITERATION_5
|
431
|
+
# endif
|
432
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 172 && MSGPACK_PP_ITERATION_START_5 >= 172
|
433
|
+
# define MSGPACK_PP_ITERATION_5 172
|
434
|
+
# include MSGPACK_PP_FILENAME_5
|
435
|
+
# undef MSGPACK_PP_ITERATION_5
|
436
|
+
# endif
|
437
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 171 && MSGPACK_PP_ITERATION_START_5 >= 171
|
438
|
+
# define MSGPACK_PP_ITERATION_5 171
|
439
|
+
# include MSGPACK_PP_FILENAME_5
|
440
|
+
# undef MSGPACK_PP_ITERATION_5
|
441
|
+
# endif
|
442
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 170 && MSGPACK_PP_ITERATION_START_5 >= 170
|
443
|
+
# define MSGPACK_PP_ITERATION_5 170
|
444
|
+
# include MSGPACK_PP_FILENAME_5
|
445
|
+
# undef MSGPACK_PP_ITERATION_5
|
446
|
+
# endif
|
447
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 169 && MSGPACK_PP_ITERATION_START_5 >= 169
|
448
|
+
# define MSGPACK_PP_ITERATION_5 169
|
449
|
+
# include MSGPACK_PP_FILENAME_5
|
450
|
+
# undef MSGPACK_PP_ITERATION_5
|
451
|
+
# endif
|
452
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 168 && MSGPACK_PP_ITERATION_START_5 >= 168
|
453
|
+
# define MSGPACK_PP_ITERATION_5 168
|
454
|
+
# include MSGPACK_PP_FILENAME_5
|
455
|
+
# undef MSGPACK_PP_ITERATION_5
|
456
|
+
# endif
|
457
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 167 && MSGPACK_PP_ITERATION_START_5 >= 167
|
458
|
+
# define MSGPACK_PP_ITERATION_5 167
|
459
|
+
# include MSGPACK_PP_FILENAME_5
|
460
|
+
# undef MSGPACK_PP_ITERATION_5
|
461
|
+
# endif
|
462
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 166 && MSGPACK_PP_ITERATION_START_5 >= 166
|
463
|
+
# define MSGPACK_PP_ITERATION_5 166
|
464
|
+
# include MSGPACK_PP_FILENAME_5
|
465
|
+
# undef MSGPACK_PP_ITERATION_5
|
466
|
+
# endif
|
467
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 165 && MSGPACK_PP_ITERATION_START_5 >= 165
|
468
|
+
# define MSGPACK_PP_ITERATION_5 165
|
469
|
+
# include MSGPACK_PP_FILENAME_5
|
470
|
+
# undef MSGPACK_PP_ITERATION_5
|
471
|
+
# endif
|
472
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 164 && MSGPACK_PP_ITERATION_START_5 >= 164
|
473
|
+
# define MSGPACK_PP_ITERATION_5 164
|
474
|
+
# include MSGPACK_PP_FILENAME_5
|
475
|
+
# undef MSGPACK_PP_ITERATION_5
|
476
|
+
# endif
|
477
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 163 && MSGPACK_PP_ITERATION_START_5 >= 163
|
478
|
+
# define MSGPACK_PP_ITERATION_5 163
|
479
|
+
# include MSGPACK_PP_FILENAME_5
|
480
|
+
# undef MSGPACK_PP_ITERATION_5
|
481
|
+
# endif
|
482
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 162 && MSGPACK_PP_ITERATION_START_5 >= 162
|
483
|
+
# define MSGPACK_PP_ITERATION_5 162
|
484
|
+
# include MSGPACK_PP_FILENAME_5
|
485
|
+
# undef MSGPACK_PP_ITERATION_5
|
486
|
+
# endif
|
487
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 161 && MSGPACK_PP_ITERATION_START_5 >= 161
|
488
|
+
# define MSGPACK_PP_ITERATION_5 161
|
489
|
+
# include MSGPACK_PP_FILENAME_5
|
490
|
+
# undef MSGPACK_PP_ITERATION_5
|
491
|
+
# endif
|
492
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 160 && MSGPACK_PP_ITERATION_START_5 >= 160
|
493
|
+
# define MSGPACK_PP_ITERATION_5 160
|
494
|
+
# include MSGPACK_PP_FILENAME_5
|
495
|
+
# undef MSGPACK_PP_ITERATION_5
|
496
|
+
# endif
|
497
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 159 && MSGPACK_PP_ITERATION_START_5 >= 159
|
498
|
+
# define MSGPACK_PP_ITERATION_5 159
|
499
|
+
# include MSGPACK_PP_FILENAME_5
|
500
|
+
# undef MSGPACK_PP_ITERATION_5
|
501
|
+
# endif
|
502
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 158 && MSGPACK_PP_ITERATION_START_5 >= 158
|
503
|
+
# define MSGPACK_PP_ITERATION_5 158
|
504
|
+
# include MSGPACK_PP_FILENAME_5
|
505
|
+
# undef MSGPACK_PP_ITERATION_5
|
506
|
+
# endif
|
507
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 157 && MSGPACK_PP_ITERATION_START_5 >= 157
|
508
|
+
# define MSGPACK_PP_ITERATION_5 157
|
509
|
+
# include MSGPACK_PP_FILENAME_5
|
510
|
+
# undef MSGPACK_PP_ITERATION_5
|
511
|
+
# endif
|
512
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 156 && MSGPACK_PP_ITERATION_START_5 >= 156
|
513
|
+
# define MSGPACK_PP_ITERATION_5 156
|
514
|
+
# include MSGPACK_PP_FILENAME_5
|
515
|
+
# undef MSGPACK_PP_ITERATION_5
|
516
|
+
# endif
|
517
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 155 && MSGPACK_PP_ITERATION_START_5 >= 155
|
518
|
+
# define MSGPACK_PP_ITERATION_5 155
|
519
|
+
# include MSGPACK_PP_FILENAME_5
|
520
|
+
# undef MSGPACK_PP_ITERATION_5
|
521
|
+
# endif
|
522
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 154 && MSGPACK_PP_ITERATION_START_5 >= 154
|
523
|
+
# define MSGPACK_PP_ITERATION_5 154
|
524
|
+
# include MSGPACK_PP_FILENAME_5
|
525
|
+
# undef MSGPACK_PP_ITERATION_5
|
526
|
+
# endif
|
527
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 153 && MSGPACK_PP_ITERATION_START_5 >= 153
|
528
|
+
# define MSGPACK_PP_ITERATION_5 153
|
529
|
+
# include MSGPACK_PP_FILENAME_5
|
530
|
+
# undef MSGPACK_PP_ITERATION_5
|
531
|
+
# endif
|
532
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 152 && MSGPACK_PP_ITERATION_START_5 >= 152
|
533
|
+
# define MSGPACK_PP_ITERATION_5 152
|
534
|
+
# include MSGPACK_PP_FILENAME_5
|
535
|
+
# undef MSGPACK_PP_ITERATION_5
|
536
|
+
# endif
|
537
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 151 && MSGPACK_PP_ITERATION_START_5 >= 151
|
538
|
+
# define MSGPACK_PP_ITERATION_5 151
|
539
|
+
# include MSGPACK_PP_FILENAME_5
|
540
|
+
# undef MSGPACK_PP_ITERATION_5
|
541
|
+
# endif
|
542
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 150 && MSGPACK_PP_ITERATION_START_5 >= 150
|
543
|
+
# define MSGPACK_PP_ITERATION_5 150
|
544
|
+
# include MSGPACK_PP_FILENAME_5
|
545
|
+
# undef MSGPACK_PP_ITERATION_5
|
546
|
+
# endif
|
547
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 149 && MSGPACK_PP_ITERATION_START_5 >= 149
|
548
|
+
# define MSGPACK_PP_ITERATION_5 149
|
549
|
+
# include MSGPACK_PP_FILENAME_5
|
550
|
+
# undef MSGPACK_PP_ITERATION_5
|
551
|
+
# endif
|
552
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 148 && MSGPACK_PP_ITERATION_START_5 >= 148
|
553
|
+
# define MSGPACK_PP_ITERATION_5 148
|
554
|
+
# include MSGPACK_PP_FILENAME_5
|
555
|
+
# undef MSGPACK_PP_ITERATION_5
|
556
|
+
# endif
|
557
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 147 && MSGPACK_PP_ITERATION_START_5 >= 147
|
558
|
+
# define MSGPACK_PP_ITERATION_5 147
|
559
|
+
# include MSGPACK_PP_FILENAME_5
|
560
|
+
# undef MSGPACK_PP_ITERATION_5
|
561
|
+
# endif
|
562
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 146 && MSGPACK_PP_ITERATION_START_5 >= 146
|
563
|
+
# define MSGPACK_PP_ITERATION_5 146
|
564
|
+
# include MSGPACK_PP_FILENAME_5
|
565
|
+
# undef MSGPACK_PP_ITERATION_5
|
566
|
+
# endif
|
567
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 145 && MSGPACK_PP_ITERATION_START_5 >= 145
|
568
|
+
# define MSGPACK_PP_ITERATION_5 145
|
569
|
+
# include MSGPACK_PP_FILENAME_5
|
570
|
+
# undef MSGPACK_PP_ITERATION_5
|
571
|
+
# endif
|
572
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 144 && MSGPACK_PP_ITERATION_START_5 >= 144
|
573
|
+
# define MSGPACK_PP_ITERATION_5 144
|
574
|
+
# include MSGPACK_PP_FILENAME_5
|
575
|
+
# undef MSGPACK_PP_ITERATION_5
|
576
|
+
# endif
|
577
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 143 && MSGPACK_PP_ITERATION_START_5 >= 143
|
578
|
+
# define MSGPACK_PP_ITERATION_5 143
|
579
|
+
# include MSGPACK_PP_FILENAME_5
|
580
|
+
# undef MSGPACK_PP_ITERATION_5
|
581
|
+
# endif
|
582
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 142 && MSGPACK_PP_ITERATION_START_5 >= 142
|
583
|
+
# define MSGPACK_PP_ITERATION_5 142
|
584
|
+
# include MSGPACK_PP_FILENAME_5
|
585
|
+
# undef MSGPACK_PP_ITERATION_5
|
586
|
+
# endif
|
587
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 141 && MSGPACK_PP_ITERATION_START_5 >= 141
|
588
|
+
# define MSGPACK_PP_ITERATION_5 141
|
589
|
+
# include MSGPACK_PP_FILENAME_5
|
590
|
+
# undef MSGPACK_PP_ITERATION_5
|
591
|
+
# endif
|
592
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 140 && MSGPACK_PP_ITERATION_START_5 >= 140
|
593
|
+
# define MSGPACK_PP_ITERATION_5 140
|
594
|
+
# include MSGPACK_PP_FILENAME_5
|
595
|
+
# undef MSGPACK_PP_ITERATION_5
|
596
|
+
# endif
|
597
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 139 && MSGPACK_PP_ITERATION_START_5 >= 139
|
598
|
+
# define MSGPACK_PP_ITERATION_5 139
|
599
|
+
# include MSGPACK_PP_FILENAME_5
|
600
|
+
# undef MSGPACK_PP_ITERATION_5
|
601
|
+
# endif
|
602
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 138 && MSGPACK_PP_ITERATION_START_5 >= 138
|
603
|
+
# define MSGPACK_PP_ITERATION_5 138
|
604
|
+
# include MSGPACK_PP_FILENAME_5
|
605
|
+
# undef MSGPACK_PP_ITERATION_5
|
606
|
+
# endif
|
607
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 137 && MSGPACK_PP_ITERATION_START_5 >= 137
|
608
|
+
# define MSGPACK_PP_ITERATION_5 137
|
609
|
+
# include MSGPACK_PP_FILENAME_5
|
610
|
+
# undef MSGPACK_PP_ITERATION_5
|
611
|
+
# endif
|
612
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 136 && MSGPACK_PP_ITERATION_START_5 >= 136
|
613
|
+
# define MSGPACK_PP_ITERATION_5 136
|
614
|
+
# include MSGPACK_PP_FILENAME_5
|
615
|
+
# undef MSGPACK_PP_ITERATION_5
|
616
|
+
# endif
|
617
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 135 && MSGPACK_PP_ITERATION_START_5 >= 135
|
618
|
+
# define MSGPACK_PP_ITERATION_5 135
|
619
|
+
# include MSGPACK_PP_FILENAME_5
|
620
|
+
# undef MSGPACK_PP_ITERATION_5
|
621
|
+
# endif
|
622
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 134 && MSGPACK_PP_ITERATION_START_5 >= 134
|
623
|
+
# define MSGPACK_PP_ITERATION_5 134
|
624
|
+
# include MSGPACK_PP_FILENAME_5
|
625
|
+
# undef MSGPACK_PP_ITERATION_5
|
626
|
+
# endif
|
627
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 133 && MSGPACK_PP_ITERATION_START_5 >= 133
|
628
|
+
# define MSGPACK_PP_ITERATION_5 133
|
629
|
+
# include MSGPACK_PP_FILENAME_5
|
630
|
+
# undef MSGPACK_PP_ITERATION_5
|
631
|
+
# endif
|
632
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 132 && MSGPACK_PP_ITERATION_START_5 >= 132
|
633
|
+
# define MSGPACK_PP_ITERATION_5 132
|
634
|
+
# include MSGPACK_PP_FILENAME_5
|
635
|
+
# undef MSGPACK_PP_ITERATION_5
|
636
|
+
# endif
|
637
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 131 && MSGPACK_PP_ITERATION_START_5 >= 131
|
638
|
+
# define MSGPACK_PP_ITERATION_5 131
|
639
|
+
# include MSGPACK_PP_FILENAME_5
|
640
|
+
# undef MSGPACK_PP_ITERATION_5
|
641
|
+
# endif
|
642
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 130 && MSGPACK_PP_ITERATION_START_5 >= 130
|
643
|
+
# define MSGPACK_PP_ITERATION_5 130
|
644
|
+
# include MSGPACK_PP_FILENAME_5
|
645
|
+
# undef MSGPACK_PP_ITERATION_5
|
646
|
+
# endif
|
647
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 129 && MSGPACK_PP_ITERATION_START_5 >= 129
|
648
|
+
# define MSGPACK_PP_ITERATION_5 129
|
649
|
+
# include MSGPACK_PP_FILENAME_5
|
650
|
+
# undef MSGPACK_PP_ITERATION_5
|
651
|
+
# endif
|
652
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 128 && MSGPACK_PP_ITERATION_START_5 >= 128
|
653
|
+
# define MSGPACK_PP_ITERATION_5 128
|
654
|
+
# include MSGPACK_PP_FILENAME_5
|
655
|
+
# undef MSGPACK_PP_ITERATION_5
|
656
|
+
# endif
|
657
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 127 && MSGPACK_PP_ITERATION_START_5 >= 127
|
658
|
+
# define MSGPACK_PP_ITERATION_5 127
|
659
|
+
# include MSGPACK_PP_FILENAME_5
|
660
|
+
# undef MSGPACK_PP_ITERATION_5
|
661
|
+
# endif
|
662
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 126 && MSGPACK_PP_ITERATION_START_5 >= 126
|
663
|
+
# define MSGPACK_PP_ITERATION_5 126
|
664
|
+
# include MSGPACK_PP_FILENAME_5
|
665
|
+
# undef MSGPACK_PP_ITERATION_5
|
666
|
+
# endif
|
667
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 125 && MSGPACK_PP_ITERATION_START_5 >= 125
|
668
|
+
# define MSGPACK_PP_ITERATION_5 125
|
669
|
+
# include MSGPACK_PP_FILENAME_5
|
670
|
+
# undef MSGPACK_PP_ITERATION_5
|
671
|
+
# endif
|
672
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 124 && MSGPACK_PP_ITERATION_START_5 >= 124
|
673
|
+
# define MSGPACK_PP_ITERATION_5 124
|
674
|
+
# include MSGPACK_PP_FILENAME_5
|
675
|
+
# undef MSGPACK_PP_ITERATION_5
|
676
|
+
# endif
|
677
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 123 && MSGPACK_PP_ITERATION_START_5 >= 123
|
678
|
+
# define MSGPACK_PP_ITERATION_5 123
|
679
|
+
# include MSGPACK_PP_FILENAME_5
|
680
|
+
# undef MSGPACK_PP_ITERATION_5
|
681
|
+
# endif
|
682
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 122 && MSGPACK_PP_ITERATION_START_5 >= 122
|
683
|
+
# define MSGPACK_PP_ITERATION_5 122
|
684
|
+
# include MSGPACK_PP_FILENAME_5
|
685
|
+
# undef MSGPACK_PP_ITERATION_5
|
686
|
+
# endif
|
687
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 121 && MSGPACK_PP_ITERATION_START_5 >= 121
|
688
|
+
# define MSGPACK_PP_ITERATION_5 121
|
689
|
+
# include MSGPACK_PP_FILENAME_5
|
690
|
+
# undef MSGPACK_PP_ITERATION_5
|
691
|
+
# endif
|
692
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 120 && MSGPACK_PP_ITERATION_START_5 >= 120
|
693
|
+
# define MSGPACK_PP_ITERATION_5 120
|
694
|
+
# include MSGPACK_PP_FILENAME_5
|
695
|
+
# undef MSGPACK_PP_ITERATION_5
|
696
|
+
# endif
|
697
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 119 && MSGPACK_PP_ITERATION_START_5 >= 119
|
698
|
+
# define MSGPACK_PP_ITERATION_5 119
|
699
|
+
# include MSGPACK_PP_FILENAME_5
|
700
|
+
# undef MSGPACK_PP_ITERATION_5
|
701
|
+
# endif
|
702
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 118 && MSGPACK_PP_ITERATION_START_5 >= 118
|
703
|
+
# define MSGPACK_PP_ITERATION_5 118
|
704
|
+
# include MSGPACK_PP_FILENAME_5
|
705
|
+
# undef MSGPACK_PP_ITERATION_5
|
706
|
+
# endif
|
707
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 117 && MSGPACK_PP_ITERATION_START_5 >= 117
|
708
|
+
# define MSGPACK_PP_ITERATION_5 117
|
709
|
+
# include MSGPACK_PP_FILENAME_5
|
710
|
+
# undef MSGPACK_PP_ITERATION_5
|
711
|
+
# endif
|
712
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 116 && MSGPACK_PP_ITERATION_START_5 >= 116
|
713
|
+
# define MSGPACK_PP_ITERATION_5 116
|
714
|
+
# include MSGPACK_PP_FILENAME_5
|
715
|
+
# undef MSGPACK_PP_ITERATION_5
|
716
|
+
# endif
|
717
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 115 && MSGPACK_PP_ITERATION_START_5 >= 115
|
718
|
+
# define MSGPACK_PP_ITERATION_5 115
|
719
|
+
# include MSGPACK_PP_FILENAME_5
|
720
|
+
# undef MSGPACK_PP_ITERATION_5
|
721
|
+
# endif
|
722
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 114 && MSGPACK_PP_ITERATION_START_5 >= 114
|
723
|
+
# define MSGPACK_PP_ITERATION_5 114
|
724
|
+
# include MSGPACK_PP_FILENAME_5
|
725
|
+
# undef MSGPACK_PP_ITERATION_5
|
726
|
+
# endif
|
727
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 113 && MSGPACK_PP_ITERATION_START_5 >= 113
|
728
|
+
# define MSGPACK_PP_ITERATION_5 113
|
729
|
+
# include MSGPACK_PP_FILENAME_5
|
730
|
+
# undef MSGPACK_PP_ITERATION_5
|
731
|
+
# endif
|
732
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 112 && MSGPACK_PP_ITERATION_START_5 >= 112
|
733
|
+
# define MSGPACK_PP_ITERATION_5 112
|
734
|
+
# include MSGPACK_PP_FILENAME_5
|
735
|
+
# undef MSGPACK_PP_ITERATION_5
|
736
|
+
# endif
|
737
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 111 && MSGPACK_PP_ITERATION_START_5 >= 111
|
738
|
+
# define MSGPACK_PP_ITERATION_5 111
|
739
|
+
# include MSGPACK_PP_FILENAME_5
|
740
|
+
# undef MSGPACK_PP_ITERATION_5
|
741
|
+
# endif
|
742
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 110 && MSGPACK_PP_ITERATION_START_5 >= 110
|
743
|
+
# define MSGPACK_PP_ITERATION_5 110
|
744
|
+
# include MSGPACK_PP_FILENAME_5
|
745
|
+
# undef MSGPACK_PP_ITERATION_5
|
746
|
+
# endif
|
747
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 109 && MSGPACK_PP_ITERATION_START_5 >= 109
|
748
|
+
# define MSGPACK_PP_ITERATION_5 109
|
749
|
+
# include MSGPACK_PP_FILENAME_5
|
750
|
+
# undef MSGPACK_PP_ITERATION_5
|
751
|
+
# endif
|
752
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 108 && MSGPACK_PP_ITERATION_START_5 >= 108
|
753
|
+
# define MSGPACK_PP_ITERATION_5 108
|
754
|
+
# include MSGPACK_PP_FILENAME_5
|
755
|
+
# undef MSGPACK_PP_ITERATION_5
|
756
|
+
# endif
|
757
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 107 && MSGPACK_PP_ITERATION_START_5 >= 107
|
758
|
+
# define MSGPACK_PP_ITERATION_5 107
|
759
|
+
# include MSGPACK_PP_FILENAME_5
|
760
|
+
# undef MSGPACK_PP_ITERATION_5
|
761
|
+
# endif
|
762
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 106 && MSGPACK_PP_ITERATION_START_5 >= 106
|
763
|
+
# define MSGPACK_PP_ITERATION_5 106
|
764
|
+
# include MSGPACK_PP_FILENAME_5
|
765
|
+
# undef MSGPACK_PP_ITERATION_5
|
766
|
+
# endif
|
767
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 105 && MSGPACK_PP_ITERATION_START_5 >= 105
|
768
|
+
# define MSGPACK_PP_ITERATION_5 105
|
769
|
+
# include MSGPACK_PP_FILENAME_5
|
770
|
+
# undef MSGPACK_PP_ITERATION_5
|
771
|
+
# endif
|
772
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 104 && MSGPACK_PP_ITERATION_START_5 >= 104
|
773
|
+
# define MSGPACK_PP_ITERATION_5 104
|
774
|
+
# include MSGPACK_PP_FILENAME_5
|
775
|
+
# undef MSGPACK_PP_ITERATION_5
|
776
|
+
# endif
|
777
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 103 && MSGPACK_PP_ITERATION_START_5 >= 103
|
778
|
+
# define MSGPACK_PP_ITERATION_5 103
|
779
|
+
# include MSGPACK_PP_FILENAME_5
|
780
|
+
# undef MSGPACK_PP_ITERATION_5
|
781
|
+
# endif
|
782
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 102 && MSGPACK_PP_ITERATION_START_5 >= 102
|
783
|
+
# define MSGPACK_PP_ITERATION_5 102
|
784
|
+
# include MSGPACK_PP_FILENAME_5
|
785
|
+
# undef MSGPACK_PP_ITERATION_5
|
786
|
+
# endif
|
787
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 101 && MSGPACK_PP_ITERATION_START_5 >= 101
|
788
|
+
# define MSGPACK_PP_ITERATION_5 101
|
789
|
+
# include MSGPACK_PP_FILENAME_5
|
790
|
+
# undef MSGPACK_PP_ITERATION_5
|
791
|
+
# endif
|
792
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 100 && MSGPACK_PP_ITERATION_START_5 >= 100
|
793
|
+
# define MSGPACK_PP_ITERATION_5 100
|
794
|
+
# include MSGPACK_PP_FILENAME_5
|
795
|
+
# undef MSGPACK_PP_ITERATION_5
|
796
|
+
# endif
|
797
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 99 && MSGPACK_PP_ITERATION_START_5 >= 99
|
798
|
+
# define MSGPACK_PP_ITERATION_5 99
|
799
|
+
# include MSGPACK_PP_FILENAME_5
|
800
|
+
# undef MSGPACK_PP_ITERATION_5
|
801
|
+
# endif
|
802
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 98 && MSGPACK_PP_ITERATION_START_5 >= 98
|
803
|
+
# define MSGPACK_PP_ITERATION_5 98
|
804
|
+
# include MSGPACK_PP_FILENAME_5
|
805
|
+
# undef MSGPACK_PP_ITERATION_5
|
806
|
+
# endif
|
807
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 97 && MSGPACK_PP_ITERATION_START_5 >= 97
|
808
|
+
# define MSGPACK_PP_ITERATION_5 97
|
809
|
+
# include MSGPACK_PP_FILENAME_5
|
810
|
+
# undef MSGPACK_PP_ITERATION_5
|
811
|
+
# endif
|
812
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 96 && MSGPACK_PP_ITERATION_START_5 >= 96
|
813
|
+
# define MSGPACK_PP_ITERATION_5 96
|
814
|
+
# include MSGPACK_PP_FILENAME_5
|
815
|
+
# undef MSGPACK_PP_ITERATION_5
|
816
|
+
# endif
|
817
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 95 && MSGPACK_PP_ITERATION_START_5 >= 95
|
818
|
+
# define MSGPACK_PP_ITERATION_5 95
|
819
|
+
# include MSGPACK_PP_FILENAME_5
|
820
|
+
# undef MSGPACK_PP_ITERATION_5
|
821
|
+
# endif
|
822
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 94 && MSGPACK_PP_ITERATION_START_5 >= 94
|
823
|
+
# define MSGPACK_PP_ITERATION_5 94
|
824
|
+
# include MSGPACK_PP_FILENAME_5
|
825
|
+
# undef MSGPACK_PP_ITERATION_5
|
826
|
+
# endif
|
827
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 93 && MSGPACK_PP_ITERATION_START_5 >= 93
|
828
|
+
# define MSGPACK_PP_ITERATION_5 93
|
829
|
+
# include MSGPACK_PP_FILENAME_5
|
830
|
+
# undef MSGPACK_PP_ITERATION_5
|
831
|
+
# endif
|
832
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 92 && MSGPACK_PP_ITERATION_START_5 >= 92
|
833
|
+
# define MSGPACK_PP_ITERATION_5 92
|
834
|
+
# include MSGPACK_PP_FILENAME_5
|
835
|
+
# undef MSGPACK_PP_ITERATION_5
|
836
|
+
# endif
|
837
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 91 && MSGPACK_PP_ITERATION_START_5 >= 91
|
838
|
+
# define MSGPACK_PP_ITERATION_5 91
|
839
|
+
# include MSGPACK_PP_FILENAME_5
|
840
|
+
# undef MSGPACK_PP_ITERATION_5
|
841
|
+
# endif
|
842
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 90 && MSGPACK_PP_ITERATION_START_5 >= 90
|
843
|
+
# define MSGPACK_PP_ITERATION_5 90
|
844
|
+
# include MSGPACK_PP_FILENAME_5
|
845
|
+
# undef MSGPACK_PP_ITERATION_5
|
846
|
+
# endif
|
847
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 89 && MSGPACK_PP_ITERATION_START_5 >= 89
|
848
|
+
# define MSGPACK_PP_ITERATION_5 89
|
849
|
+
# include MSGPACK_PP_FILENAME_5
|
850
|
+
# undef MSGPACK_PP_ITERATION_5
|
851
|
+
# endif
|
852
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 88 && MSGPACK_PP_ITERATION_START_5 >= 88
|
853
|
+
# define MSGPACK_PP_ITERATION_5 88
|
854
|
+
# include MSGPACK_PP_FILENAME_5
|
855
|
+
# undef MSGPACK_PP_ITERATION_5
|
856
|
+
# endif
|
857
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 87 && MSGPACK_PP_ITERATION_START_5 >= 87
|
858
|
+
# define MSGPACK_PP_ITERATION_5 87
|
859
|
+
# include MSGPACK_PP_FILENAME_5
|
860
|
+
# undef MSGPACK_PP_ITERATION_5
|
861
|
+
# endif
|
862
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 86 && MSGPACK_PP_ITERATION_START_5 >= 86
|
863
|
+
# define MSGPACK_PP_ITERATION_5 86
|
864
|
+
# include MSGPACK_PP_FILENAME_5
|
865
|
+
# undef MSGPACK_PP_ITERATION_5
|
866
|
+
# endif
|
867
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 85 && MSGPACK_PP_ITERATION_START_5 >= 85
|
868
|
+
# define MSGPACK_PP_ITERATION_5 85
|
869
|
+
# include MSGPACK_PP_FILENAME_5
|
870
|
+
# undef MSGPACK_PP_ITERATION_5
|
871
|
+
# endif
|
872
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 84 && MSGPACK_PP_ITERATION_START_5 >= 84
|
873
|
+
# define MSGPACK_PP_ITERATION_5 84
|
874
|
+
# include MSGPACK_PP_FILENAME_5
|
875
|
+
# undef MSGPACK_PP_ITERATION_5
|
876
|
+
# endif
|
877
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 83 && MSGPACK_PP_ITERATION_START_5 >= 83
|
878
|
+
# define MSGPACK_PP_ITERATION_5 83
|
879
|
+
# include MSGPACK_PP_FILENAME_5
|
880
|
+
# undef MSGPACK_PP_ITERATION_5
|
881
|
+
# endif
|
882
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 82 && MSGPACK_PP_ITERATION_START_5 >= 82
|
883
|
+
# define MSGPACK_PP_ITERATION_5 82
|
884
|
+
# include MSGPACK_PP_FILENAME_5
|
885
|
+
# undef MSGPACK_PP_ITERATION_5
|
886
|
+
# endif
|
887
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 81 && MSGPACK_PP_ITERATION_START_5 >= 81
|
888
|
+
# define MSGPACK_PP_ITERATION_5 81
|
889
|
+
# include MSGPACK_PP_FILENAME_5
|
890
|
+
# undef MSGPACK_PP_ITERATION_5
|
891
|
+
# endif
|
892
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 80 && MSGPACK_PP_ITERATION_START_5 >= 80
|
893
|
+
# define MSGPACK_PP_ITERATION_5 80
|
894
|
+
# include MSGPACK_PP_FILENAME_5
|
895
|
+
# undef MSGPACK_PP_ITERATION_5
|
896
|
+
# endif
|
897
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 79 && MSGPACK_PP_ITERATION_START_5 >= 79
|
898
|
+
# define MSGPACK_PP_ITERATION_5 79
|
899
|
+
# include MSGPACK_PP_FILENAME_5
|
900
|
+
# undef MSGPACK_PP_ITERATION_5
|
901
|
+
# endif
|
902
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 78 && MSGPACK_PP_ITERATION_START_5 >= 78
|
903
|
+
# define MSGPACK_PP_ITERATION_5 78
|
904
|
+
# include MSGPACK_PP_FILENAME_5
|
905
|
+
# undef MSGPACK_PP_ITERATION_5
|
906
|
+
# endif
|
907
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 77 && MSGPACK_PP_ITERATION_START_5 >= 77
|
908
|
+
# define MSGPACK_PP_ITERATION_5 77
|
909
|
+
# include MSGPACK_PP_FILENAME_5
|
910
|
+
# undef MSGPACK_PP_ITERATION_5
|
911
|
+
# endif
|
912
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 76 && MSGPACK_PP_ITERATION_START_5 >= 76
|
913
|
+
# define MSGPACK_PP_ITERATION_5 76
|
914
|
+
# include MSGPACK_PP_FILENAME_5
|
915
|
+
# undef MSGPACK_PP_ITERATION_5
|
916
|
+
# endif
|
917
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 75 && MSGPACK_PP_ITERATION_START_5 >= 75
|
918
|
+
# define MSGPACK_PP_ITERATION_5 75
|
919
|
+
# include MSGPACK_PP_FILENAME_5
|
920
|
+
# undef MSGPACK_PP_ITERATION_5
|
921
|
+
# endif
|
922
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 74 && MSGPACK_PP_ITERATION_START_5 >= 74
|
923
|
+
# define MSGPACK_PP_ITERATION_5 74
|
924
|
+
# include MSGPACK_PP_FILENAME_5
|
925
|
+
# undef MSGPACK_PP_ITERATION_5
|
926
|
+
# endif
|
927
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 73 && MSGPACK_PP_ITERATION_START_5 >= 73
|
928
|
+
# define MSGPACK_PP_ITERATION_5 73
|
929
|
+
# include MSGPACK_PP_FILENAME_5
|
930
|
+
# undef MSGPACK_PP_ITERATION_5
|
931
|
+
# endif
|
932
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 72 && MSGPACK_PP_ITERATION_START_5 >= 72
|
933
|
+
# define MSGPACK_PP_ITERATION_5 72
|
934
|
+
# include MSGPACK_PP_FILENAME_5
|
935
|
+
# undef MSGPACK_PP_ITERATION_5
|
936
|
+
# endif
|
937
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 71 && MSGPACK_PP_ITERATION_START_5 >= 71
|
938
|
+
# define MSGPACK_PP_ITERATION_5 71
|
939
|
+
# include MSGPACK_PP_FILENAME_5
|
940
|
+
# undef MSGPACK_PP_ITERATION_5
|
941
|
+
# endif
|
942
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 70 && MSGPACK_PP_ITERATION_START_5 >= 70
|
943
|
+
# define MSGPACK_PP_ITERATION_5 70
|
944
|
+
# include MSGPACK_PP_FILENAME_5
|
945
|
+
# undef MSGPACK_PP_ITERATION_5
|
946
|
+
# endif
|
947
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 69 && MSGPACK_PP_ITERATION_START_5 >= 69
|
948
|
+
# define MSGPACK_PP_ITERATION_5 69
|
949
|
+
# include MSGPACK_PP_FILENAME_5
|
950
|
+
# undef MSGPACK_PP_ITERATION_5
|
951
|
+
# endif
|
952
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 68 && MSGPACK_PP_ITERATION_START_5 >= 68
|
953
|
+
# define MSGPACK_PP_ITERATION_5 68
|
954
|
+
# include MSGPACK_PP_FILENAME_5
|
955
|
+
# undef MSGPACK_PP_ITERATION_5
|
956
|
+
# endif
|
957
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 67 && MSGPACK_PP_ITERATION_START_5 >= 67
|
958
|
+
# define MSGPACK_PP_ITERATION_5 67
|
959
|
+
# include MSGPACK_PP_FILENAME_5
|
960
|
+
# undef MSGPACK_PP_ITERATION_5
|
961
|
+
# endif
|
962
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 66 && MSGPACK_PP_ITERATION_START_5 >= 66
|
963
|
+
# define MSGPACK_PP_ITERATION_5 66
|
964
|
+
# include MSGPACK_PP_FILENAME_5
|
965
|
+
# undef MSGPACK_PP_ITERATION_5
|
966
|
+
# endif
|
967
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 65 && MSGPACK_PP_ITERATION_START_5 >= 65
|
968
|
+
# define MSGPACK_PP_ITERATION_5 65
|
969
|
+
# include MSGPACK_PP_FILENAME_5
|
970
|
+
# undef MSGPACK_PP_ITERATION_5
|
971
|
+
# endif
|
972
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 64 && MSGPACK_PP_ITERATION_START_5 >= 64
|
973
|
+
# define MSGPACK_PP_ITERATION_5 64
|
974
|
+
# include MSGPACK_PP_FILENAME_5
|
975
|
+
# undef MSGPACK_PP_ITERATION_5
|
976
|
+
# endif
|
977
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 63 && MSGPACK_PP_ITERATION_START_5 >= 63
|
978
|
+
# define MSGPACK_PP_ITERATION_5 63
|
979
|
+
# include MSGPACK_PP_FILENAME_5
|
980
|
+
# undef MSGPACK_PP_ITERATION_5
|
981
|
+
# endif
|
982
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 62 && MSGPACK_PP_ITERATION_START_5 >= 62
|
983
|
+
# define MSGPACK_PP_ITERATION_5 62
|
984
|
+
# include MSGPACK_PP_FILENAME_5
|
985
|
+
# undef MSGPACK_PP_ITERATION_5
|
986
|
+
# endif
|
987
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 61 && MSGPACK_PP_ITERATION_START_5 >= 61
|
988
|
+
# define MSGPACK_PP_ITERATION_5 61
|
989
|
+
# include MSGPACK_PP_FILENAME_5
|
990
|
+
# undef MSGPACK_PP_ITERATION_5
|
991
|
+
# endif
|
992
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 60 && MSGPACK_PP_ITERATION_START_5 >= 60
|
993
|
+
# define MSGPACK_PP_ITERATION_5 60
|
994
|
+
# include MSGPACK_PP_FILENAME_5
|
995
|
+
# undef MSGPACK_PP_ITERATION_5
|
996
|
+
# endif
|
997
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 59 && MSGPACK_PP_ITERATION_START_5 >= 59
|
998
|
+
# define MSGPACK_PP_ITERATION_5 59
|
999
|
+
# include MSGPACK_PP_FILENAME_5
|
1000
|
+
# undef MSGPACK_PP_ITERATION_5
|
1001
|
+
# endif
|
1002
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 58 && MSGPACK_PP_ITERATION_START_5 >= 58
|
1003
|
+
# define MSGPACK_PP_ITERATION_5 58
|
1004
|
+
# include MSGPACK_PP_FILENAME_5
|
1005
|
+
# undef MSGPACK_PP_ITERATION_5
|
1006
|
+
# endif
|
1007
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 57 && MSGPACK_PP_ITERATION_START_5 >= 57
|
1008
|
+
# define MSGPACK_PP_ITERATION_5 57
|
1009
|
+
# include MSGPACK_PP_FILENAME_5
|
1010
|
+
# undef MSGPACK_PP_ITERATION_5
|
1011
|
+
# endif
|
1012
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 56 && MSGPACK_PP_ITERATION_START_5 >= 56
|
1013
|
+
# define MSGPACK_PP_ITERATION_5 56
|
1014
|
+
# include MSGPACK_PP_FILENAME_5
|
1015
|
+
# undef MSGPACK_PP_ITERATION_5
|
1016
|
+
# endif
|
1017
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 55 && MSGPACK_PP_ITERATION_START_5 >= 55
|
1018
|
+
# define MSGPACK_PP_ITERATION_5 55
|
1019
|
+
# include MSGPACK_PP_FILENAME_5
|
1020
|
+
# undef MSGPACK_PP_ITERATION_5
|
1021
|
+
# endif
|
1022
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 54 && MSGPACK_PP_ITERATION_START_5 >= 54
|
1023
|
+
# define MSGPACK_PP_ITERATION_5 54
|
1024
|
+
# include MSGPACK_PP_FILENAME_5
|
1025
|
+
# undef MSGPACK_PP_ITERATION_5
|
1026
|
+
# endif
|
1027
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 53 && MSGPACK_PP_ITERATION_START_5 >= 53
|
1028
|
+
# define MSGPACK_PP_ITERATION_5 53
|
1029
|
+
# include MSGPACK_PP_FILENAME_5
|
1030
|
+
# undef MSGPACK_PP_ITERATION_5
|
1031
|
+
# endif
|
1032
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 52 && MSGPACK_PP_ITERATION_START_5 >= 52
|
1033
|
+
# define MSGPACK_PP_ITERATION_5 52
|
1034
|
+
# include MSGPACK_PP_FILENAME_5
|
1035
|
+
# undef MSGPACK_PP_ITERATION_5
|
1036
|
+
# endif
|
1037
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 51 && MSGPACK_PP_ITERATION_START_5 >= 51
|
1038
|
+
# define MSGPACK_PP_ITERATION_5 51
|
1039
|
+
# include MSGPACK_PP_FILENAME_5
|
1040
|
+
# undef MSGPACK_PP_ITERATION_5
|
1041
|
+
# endif
|
1042
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 50 && MSGPACK_PP_ITERATION_START_5 >= 50
|
1043
|
+
# define MSGPACK_PP_ITERATION_5 50
|
1044
|
+
# include MSGPACK_PP_FILENAME_5
|
1045
|
+
# undef MSGPACK_PP_ITERATION_5
|
1046
|
+
# endif
|
1047
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 49 && MSGPACK_PP_ITERATION_START_5 >= 49
|
1048
|
+
# define MSGPACK_PP_ITERATION_5 49
|
1049
|
+
# include MSGPACK_PP_FILENAME_5
|
1050
|
+
# undef MSGPACK_PP_ITERATION_5
|
1051
|
+
# endif
|
1052
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 48 && MSGPACK_PP_ITERATION_START_5 >= 48
|
1053
|
+
# define MSGPACK_PP_ITERATION_5 48
|
1054
|
+
# include MSGPACK_PP_FILENAME_5
|
1055
|
+
# undef MSGPACK_PP_ITERATION_5
|
1056
|
+
# endif
|
1057
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 47 && MSGPACK_PP_ITERATION_START_5 >= 47
|
1058
|
+
# define MSGPACK_PP_ITERATION_5 47
|
1059
|
+
# include MSGPACK_PP_FILENAME_5
|
1060
|
+
# undef MSGPACK_PP_ITERATION_5
|
1061
|
+
# endif
|
1062
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 46 && MSGPACK_PP_ITERATION_START_5 >= 46
|
1063
|
+
# define MSGPACK_PP_ITERATION_5 46
|
1064
|
+
# include MSGPACK_PP_FILENAME_5
|
1065
|
+
# undef MSGPACK_PP_ITERATION_5
|
1066
|
+
# endif
|
1067
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 45 && MSGPACK_PP_ITERATION_START_5 >= 45
|
1068
|
+
# define MSGPACK_PP_ITERATION_5 45
|
1069
|
+
# include MSGPACK_PP_FILENAME_5
|
1070
|
+
# undef MSGPACK_PP_ITERATION_5
|
1071
|
+
# endif
|
1072
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 44 && MSGPACK_PP_ITERATION_START_5 >= 44
|
1073
|
+
# define MSGPACK_PP_ITERATION_5 44
|
1074
|
+
# include MSGPACK_PP_FILENAME_5
|
1075
|
+
# undef MSGPACK_PP_ITERATION_5
|
1076
|
+
# endif
|
1077
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 43 && MSGPACK_PP_ITERATION_START_5 >= 43
|
1078
|
+
# define MSGPACK_PP_ITERATION_5 43
|
1079
|
+
# include MSGPACK_PP_FILENAME_5
|
1080
|
+
# undef MSGPACK_PP_ITERATION_5
|
1081
|
+
# endif
|
1082
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 42 && MSGPACK_PP_ITERATION_START_5 >= 42
|
1083
|
+
# define MSGPACK_PP_ITERATION_5 42
|
1084
|
+
# include MSGPACK_PP_FILENAME_5
|
1085
|
+
# undef MSGPACK_PP_ITERATION_5
|
1086
|
+
# endif
|
1087
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 41 && MSGPACK_PP_ITERATION_START_5 >= 41
|
1088
|
+
# define MSGPACK_PP_ITERATION_5 41
|
1089
|
+
# include MSGPACK_PP_FILENAME_5
|
1090
|
+
# undef MSGPACK_PP_ITERATION_5
|
1091
|
+
# endif
|
1092
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 40 && MSGPACK_PP_ITERATION_START_5 >= 40
|
1093
|
+
# define MSGPACK_PP_ITERATION_5 40
|
1094
|
+
# include MSGPACK_PP_FILENAME_5
|
1095
|
+
# undef MSGPACK_PP_ITERATION_5
|
1096
|
+
# endif
|
1097
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 39 && MSGPACK_PP_ITERATION_START_5 >= 39
|
1098
|
+
# define MSGPACK_PP_ITERATION_5 39
|
1099
|
+
# include MSGPACK_PP_FILENAME_5
|
1100
|
+
# undef MSGPACK_PP_ITERATION_5
|
1101
|
+
# endif
|
1102
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 38 && MSGPACK_PP_ITERATION_START_5 >= 38
|
1103
|
+
# define MSGPACK_PP_ITERATION_5 38
|
1104
|
+
# include MSGPACK_PP_FILENAME_5
|
1105
|
+
# undef MSGPACK_PP_ITERATION_5
|
1106
|
+
# endif
|
1107
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 37 && MSGPACK_PP_ITERATION_START_5 >= 37
|
1108
|
+
# define MSGPACK_PP_ITERATION_5 37
|
1109
|
+
# include MSGPACK_PP_FILENAME_5
|
1110
|
+
# undef MSGPACK_PP_ITERATION_5
|
1111
|
+
# endif
|
1112
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 36 && MSGPACK_PP_ITERATION_START_5 >= 36
|
1113
|
+
# define MSGPACK_PP_ITERATION_5 36
|
1114
|
+
# include MSGPACK_PP_FILENAME_5
|
1115
|
+
# undef MSGPACK_PP_ITERATION_5
|
1116
|
+
# endif
|
1117
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 35 && MSGPACK_PP_ITERATION_START_5 >= 35
|
1118
|
+
# define MSGPACK_PP_ITERATION_5 35
|
1119
|
+
# include MSGPACK_PP_FILENAME_5
|
1120
|
+
# undef MSGPACK_PP_ITERATION_5
|
1121
|
+
# endif
|
1122
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 34 && MSGPACK_PP_ITERATION_START_5 >= 34
|
1123
|
+
# define MSGPACK_PP_ITERATION_5 34
|
1124
|
+
# include MSGPACK_PP_FILENAME_5
|
1125
|
+
# undef MSGPACK_PP_ITERATION_5
|
1126
|
+
# endif
|
1127
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 33 && MSGPACK_PP_ITERATION_START_5 >= 33
|
1128
|
+
# define MSGPACK_PP_ITERATION_5 33
|
1129
|
+
# include MSGPACK_PP_FILENAME_5
|
1130
|
+
# undef MSGPACK_PP_ITERATION_5
|
1131
|
+
# endif
|
1132
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 32 && MSGPACK_PP_ITERATION_START_5 >= 32
|
1133
|
+
# define MSGPACK_PP_ITERATION_5 32
|
1134
|
+
# include MSGPACK_PP_FILENAME_5
|
1135
|
+
# undef MSGPACK_PP_ITERATION_5
|
1136
|
+
# endif
|
1137
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 31 && MSGPACK_PP_ITERATION_START_5 >= 31
|
1138
|
+
# define MSGPACK_PP_ITERATION_5 31
|
1139
|
+
# include MSGPACK_PP_FILENAME_5
|
1140
|
+
# undef MSGPACK_PP_ITERATION_5
|
1141
|
+
# endif
|
1142
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 30 && MSGPACK_PP_ITERATION_START_5 >= 30
|
1143
|
+
# define MSGPACK_PP_ITERATION_5 30
|
1144
|
+
# include MSGPACK_PP_FILENAME_5
|
1145
|
+
# undef MSGPACK_PP_ITERATION_5
|
1146
|
+
# endif
|
1147
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 29 && MSGPACK_PP_ITERATION_START_5 >= 29
|
1148
|
+
# define MSGPACK_PP_ITERATION_5 29
|
1149
|
+
# include MSGPACK_PP_FILENAME_5
|
1150
|
+
# undef MSGPACK_PP_ITERATION_5
|
1151
|
+
# endif
|
1152
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 28 && MSGPACK_PP_ITERATION_START_5 >= 28
|
1153
|
+
# define MSGPACK_PP_ITERATION_5 28
|
1154
|
+
# include MSGPACK_PP_FILENAME_5
|
1155
|
+
# undef MSGPACK_PP_ITERATION_5
|
1156
|
+
# endif
|
1157
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 27 && MSGPACK_PP_ITERATION_START_5 >= 27
|
1158
|
+
# define MSGPACK_PP_ITERATION_5 27
|
1159
|
+
# include MSGPACK_PP_FILENAME_5
|
1160
|
+
# undef MSGPACK_PP_ITERATION_5
|
1161
|
+
# endif
|
1162
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 26 && MSGPACK_PP_ITERATION_START_5 >= 26
|
1163
|
+
# define MSGPACK_PP_ITERATION_5 26
|
1164
|
+
# include MSGPACK_PP_FILENAME_5
|
1165
|
+
# undef MSGPACK_PP_ITERATION_5
|
1166
|
+
# endif
|
1167
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 25 && MSGPACK_PP_ITERATION_START_5 >= 25
|
1168
|
+
# define MSGPACK_PP_ITERATION_5 25
|
1169
|
+
# include MSGPACK_PP_FILENAME_5
|
1170
|
+
# undef MSGPACK_PP_ITERATION_5
|
1171
|
+
# endif
|
1172
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 24 && MSGPACK_PP_ITERATION_START_5 >= 24
|
1173
|
+
# define MSGPACK_PP_ITERATION_5 24
|
1174
|
+
# include MSGPACK_PP_FILENAME_5
|
1175
|
+
# undef MSGPACK_PP_ITERATION_5
|
1176
|
+
# endif
|
1177
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 23 && MSGPACK_PP_ITERATION_START_5 >= 23
|
1178
|
+
# define MSGPACK_PP_ITERATION_5 23
|
1179
|
+
# include MSGPACK_PP_FILENAME_5
|
1180
|
+
# undef MSGPACK_PP_ITERATION_5
|
1181
|
+
# endif
|
1182
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 22 && MSGPACK_PP_ITERATION_START_5 >= 22
|
1183
|
+
# define MSGPACK_PP_ITERATION_5 22
|
1184
|
+
# include MSGPACK_PP_FILENAME_5
|
1185
|
+
# undef MSGPACK_PP_ITERATION_5
|
1186
|
+
# endif
|
1187
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 21 && MSGPACK_PP_ITERATION_START_5 >= 21
|
1188
|
+
# define MSGPACK_PP_ITERATION_5 21
|
1189
|
+
# include MSGPACK_PP_FILENAME_5
|
1190
|
+
# undef MSGPACK_PP_ITERATION_5
|
1191
|
+
# endif
|
1192
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 20 && MSGPACK_PP_ITERATION_START_5 >= 20
|
1193
|
+
# define MSGPACK_PP_ITERATION_5 20
|
1194
|
+
# include MSGPACK_PP_FILENAME_5
|
1195
|
+
# undef MSGPACK_PP_ITERATION_5
|
1196
|
+
# endif
|
1197
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 19 && MSGPACK_PP_ITERATION_START_5 >= 19
|
1198
|
+
# define MSGPACK_PP_ITERATION_5 19
|
1199
|
+
# include MSGPACK_PP_FILENAME_5
|
1200
|
+
# undef MSGPACK_PP_ITERATION_5
|
1201
|
+
# endif
|
1202
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 18 && MSGPACK_PP_ITERATION_START_5 >= 18
|
1203
|
+
# define MSGPACK_PP_ITERATION_5 18
|
1204
|
+
# include MSGPACK_PP_FILENAME_5
|
1205
|
+
# undef MSGPACK_PP_ITERATION_5
|
1206
|
+
# endif
|
1207
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 17 && MSGPACK_PP_ITERATION_START_5 >= 17
|
1208
|
+
# define MSGPACK_PP_ITERATION_5 17
|
1209
|
+
# include MSGPACK_PP_FILENAME_5
|
1210
|
+
# undef MSGPACK_PP_ITERATION_5
|
1211
|
+
# endif
|
1212
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 16 && MSGPACK_PP_ITERATION_START_5 >= 16
|
1213
|
+
# define MSGPACK_PP_ITERATION_5 16
|
1214
|
+
# include MSGPACK_PP_FILENAME_5
|
1215
|
+
# undef MSGPACK_PP_ITERATION_5
|
1216
|
+
# endif
|
1217
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 15 && MSGPACK_PP_ITERATION_START_5 >= 15
|
1218
|
+
# define MSGPACK_PP_ITERATION_5 15
|
1219
|
+
# include MSGPACK_PP_FILENAME_5
|
1220
|
+
# undef MSGPACK_PP_ITERATION_5
|
1221
|
+
# endif
|
1222
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 14 && MSGPACK_PP_ITERATION_START_5 >= 14
|
1223
|
+
# define MSGPACK_PP_ITERATION_5 14
|
1224
|
+
# include MSGPACK_PP_FILENAME_5
|
1225
|
+
# undef MSGPACK_PP_ITERATION_5
|
1226
|
+
# endif
|
1227
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 13 && MSGPACK_PP_ITERATION_START_5 >= 13
|
1228
|
+
# define MSGPACK_PP_ITERATION_5 13
|
1229
|
+
# include MSGPACK_PP_FILENAME_5
|
1230
|
+
# undef MSGPACK_PP_ITERATION_5
|
1231
|
+
# endif
|
1232
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 12 && MSGPACK_PP_ITERATION_START_5 >= 12
|
1233
|
+
# define MSGPACK_PP_ITERATION_5 12
|
1234
|
+
# include MSGPACK_PP_FILENAME_5
|
1235
|
+
# undef MSGPACK_PP_ITERATION_5
|
1236
|
+
# endif
|
1237
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 11 && MSGPACK_PP_ITERATION_START_5 >= 11
|
1238
|
+
# define MSGPACK_PP_ITERATION_5 11
|
1239
|
+
# include MSGPACK_PP_FILENAME_5
|
1240
|
+
# undef MSGPACK_PP_ITERATION_5
|
1241
|
+
# endif
|
1242
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 10 && MSGPACK_PP_ITERATION_START_5 >= 10
|
1243
|
+
# define MSGPACK_PP_ITERATION_5 10
|
1244
|
+
# include MSGPACK_PP_FILENAME_5
|
1245
|
+
# undef MSGPACK_PP_ITERATION_5
|
1246
|
+
# endif
|
1247
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 9 && MSGPACK_PP_ITERATION_START_5 >= 9
|
1248
|
+
# define MSGPACK_PP_ITERATION_5 9
|
1249
|
+
# include MSGPACK_PP_FILENAME_5
|
1250
|
+
# undef MSGPACK_PP_ITERATION_5
|
1251
|
+
# endif
|
1252
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 8 && MSGPACK_PP_ITERATION_START_5 >= 8
|
1253
|
+
# define MSGPACK_PP_ITERATION_5 8
|
1254
|
+
# include MSGPACK_PP_FILENAME_5
|
1255
|
+
# undef MSGPACK_PP_ITERATION_5
|
1256
|
+
# endif
|
1257
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 7 && MSGPACK_PP_ITERATION_START_5 >= 7
|
1258
|
+
# define MSGPACK_PP_ITERATION_5 7
|
1259
|
+
# include MSGPACK_PP_FILENAME_5
|
1260
|
+
# undef MSGPACK_PP_ITERATION_5
|
1261
|
+
# endif
|
1262
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 6 && MSGPACK_PP_ITERATION_START_5 >= 6
|
1263
|
+
# define MSGPACK_PP_ITERATION_5 6
|
1264
|
+
# include MSGPACK_PP_FILENAME_5
|
1265
|
+
# undef MSGPACK_PP_ITERATION_5
|
1266
|
+
# endif
|
1267
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 5 && MSGPACK_PP_ITERATION_START_5 >= 5
|
1268
|
+
# define MSGPACK_PP_ITERATION_5 5
|
1269
|
+
# include MSGPACK_PP_FILENAME_5
|
1270
|
+
# undef MSGPACK_PP_ITERATION_5
|
1271
|
+
# endif
|
1272
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 4 && MSGPACK_PP_ITERATION_START_5 >= 4
|
1273
|
+
# define MSGPACK_PP_ITERATION_5 4
|
1274
|
+
# include MSGPACK_PP_FILENAME_5
|
1275
|
+
# undef MSGPACK_PP_ITERATION_5
|
1276
|
+
# endif
|
1277
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 3 && MSGPACK_PP_ITERATION_START_5 >= 3
|
1278
|
+
# define MSGPACK_PP_ITERATION_5 3
|
1279
|
+
# include MSGPACK_PP_FILENAME_5
|
1280
|
+
# undef MSGPACK_PP_ITERATION_5
|
1281
|
+
# endif
|
1282
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 2 && MSGPACK_PP_ITERATION_START_5 >= 2
|
1283
|
+
# define MSGPACK_PP_ITERATION_5 2
|
1284
|
+
# include MSGPACK_PP_FILENAME_5
|
1285
|
+
# undef MSGPACK_PP_ITERATION_5
|
1286
|
+
# endif
|
1287
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 1 && MSGPACK_PP_ITERATION_START_5 >= 1
|
1288
|
+
# define MSGPACK_PP_ITERATION_5 1
|
1289
|
+
# include MSGPACK_PP_FILENAME_5
|
1290
|
+
# undef MSGPACK_PP_ITERATION_5
|
1291
|
+
# endif
|
1292
|
+
# if MSGPACK_PP_ITERATION_FINISH_5 <= 0 && MSGPACK_PP_ITERATION_START_5 >= 0
|
1293
|
+
# define MSGPACK_PP_ITERATION_5 0
|
1294
|
+
# include MSGPACK_PP_FILENAME_5
|
1295
|
+
# undef MSGPACK_PP_ITERATION_5
|
1296
|
+
# endif
|