rroonga 5.1.1-x86-mingw32 → 6.0.0-x86-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 +2 -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_sjlj-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,1338 @@
|
|
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 defined(MSGPACK_PP_ITERATION_LIMITS)
|
13
|
+
# if !defined(MSGPACK_PP_FILENAME_2)
|
14
|
+
# error MSGPACK_PP_ERROR: depth #2 filename is not defined
|
15
|
+
# endif
|
16
|
+
# define MSGPACK_PP_VALUE MSGPACK_PP_TUPLE_ELEM(2, 0, MSGPACK_PP_ITERATION_LIMITS)
|
17
|
+
# include <msgpack/preprocessor/iteration/detail/bounds/lower2.hpp>
|
18
|
+
# define MSGPACK_PP_VALUE MSGPACK_PP_TUPLE_ELEM(2, 1, MSGPACK_PP_ITERATION_LIMITS)
|
19
|
+
# include <msgpack/preprocessor/iteration/detail/bounds/upper2.hpp>
|
20
|
+
# define MSGPACK_PP_ITERATION_FLAGS_2() 0
|
21
|
+
# undef MSGPACK_PP_ITERATION_LIMITS
|
22
|
+
# elif defined(MSGPACK_PP_ITERATION_PARAMS_2)
|
23
|
+
# define MSGPACK_PP_VALUE MSGPACK_PP_ARRAY_ELEM(0, MSGPACK_PP_ITERATION_PARAMS_2)
|
24
|
+
# include <msgpack/preprocessor/iteration/detail/bounds/lower2.hpp>
|
25
|
+
# define MSGPACK_PP_VALUE MSGPACK_PP_ARRAY_ELEM(1, MSGPACK_PP_ITERATION_PARAMS_2)
|
26
|
+
# include <msgpack/preprocessor/iteration/detail/bounds/upper2.hpp>
|
27
|
+
# define MSGPACK_PP_FILENAME_2 MSGPACK_PP_ARRAY_ELEM(2, MSGPACK_PP_ITERATION_PARAMS_2)
|
28
|
+
# if MSGPACK_PP_ARRAY_SIZE(MSGPACK_PP_ITERATION_PARAMS_2) >= 4
|
29
|
+
# define MSGPACK_PP_ITERATION_FLAGS_2() MSGPACK_PP_ARRAY_ELEM(3, MSGPACK_PP_ITERATION_PARAMS_2)
|
30
|
+
# else
|
31
|
+
# define MSGPACK_PP_ITERATION_FLAGS_2() 0
|
32
|
+
# endif
|
33
|
+
# else
|
34
|
+
# error MSGPACK_PP_ERROR: depth #2 iteration boundaries or filename not defined
|
35
|
+
# endif
|
36
|
+
#
|
37
|
+
# undef MSGPACK_PP_ITERATION_DEPTH
|
38
|
+
# define MSGPACK_PP_ITERATION_DEPTH() 2
|
39
|
+
#
|
40
|
+
# if (MSGPACK_PP_ITERATION_START_2) > (MSGPACK_PP_ITERATION_FINISH_2)
|
41
|
+
# include <msgpack/preprocessor/iteration/detail/iter/reverse2.hpp>
|
42
|
+
# else
|
43
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 0 && MSGPACK_PP_ITERATION_FINISH_2 >= 0
|
44
|
+
# define MSGPACK_PP_ITERATION_2 0
|
45
|
+
# include MSGPACK_PP_FILENAME_2
|
46
|
+
# undef MSGPACK_PP_ITERATION_2
|
47
|
+
# endif
|
48
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 1 && MSGPACK_PP_ITERATION_FINISH_2 >= 1
|
49
|
+
# define MSGPACK_PP_ITERATION_2 1
|
50
|
+
# include MSGPACK_PP_FILENAME_2
|
51
|
+
# undef MSGPACK_PP_ITERATION_2
|
52
|
+
# endif
|
53
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 2 && MSGPACK_PP_ITERATION_FINISH_2 >= 2
|
54
|
+
# define MSGPACK_PP_ITERATION_2 2
|
55
|
+
# include MSGPACK_PP_FILENAME_2
|
56
|
+
# undef MSGPACK_PP_ITERATION_2
|
57
|
+
# endif
|
58
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 3 && MSGPACK_PP_ITERATION_FINISH_2 >= 3
|
59
|
+
# define MSGPACK_PP_ITERATION_2 3
|
60
|
+
# include MSGPACK_PP_FILENAME_2
|
61
|
+
# undef MSGPACK_PP_ITERATION_2
|
62
|
+
# endif
|
63
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 4 && MSGPACK_PP_ITERATION_FINISH_2 >= 4
|
64
|
+
# define MSGPACK_PP_ITERATION_2 4
|
65
|
+
# include MSGPACK_PP_FILENAME_2
|
66
|
+
# undef MSGPACK_PP_ITERATION_2
|
67
|
+
# endif
|
68
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 5 && MSGPACK_PP_ITERATION_FINISH_2 >= 5
|
69
|
+
# define MSGPACK_PP_ITERATION_2 5
|
70
|
+
# include MSGPACK_PP_FILENAME_2
|
71
|
+
# undef MSGPACK_PP_ITERATION_2
|
72
|
+
# endif
|
73
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 6 && MSGPACK_PP_ITERATION_FINISH_2 >= 6
|
74
|
+
# define MSGPACK_PP_ITERATION_2 6
|
75
|
+
# include MSGPACK_PP_FILENAME_2
|
76
|
+
# undef MSGPACK_PP_ITERATION_2
|
77
|
+
# endif
|
78
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 7 && MSGPACK_PP_ITERATION_FINISH_2 >= 7
|
79
|
+
# define MSGPACK_PP_ITERATION_2 7
|
80
|
+
# include MSGPACK_PP_FILENAME_2
|
81
|
+
# undef MSGPACK_PP_ITERATION_2
|
82
|
+
# endif
|
83
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 8 && MSGPACK_PP_ITERATION_FINISH_2 >= 8
|
84
|
+
# define MSGPACK_PP_ITERATION_2 8
|
85
|
+
# include MSGPACK_PP_FILENAME_2
|
86
|
+
# undef MSGPACK_PP_ITERATION_2
|
87
|
+
# endif
|
88
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 9 && MSGPACK_PP_ITERATION_FINISH_2 >= 9
|
89
|
+
# define MSGPACK_PP_ITERATION_2 9
|
90
|
+
# include MSGPACK_PP_FILENAME_2
|
91
|
+
# undef MSGPACK_PP_ITERATION_2
|
92
|
+
# endif
|
93
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 10 && MSGPACK_PP_ITERATION_FINISH_2 >= 10
|
94
|
+
# define MSGPACK_PP_ITERATION_2 10
|
95
|
+
# include MSGPACK_PP_FILENAME_2
|
96
|
+
# undef MSGPACK_PP_ITERATION_2
|
97
|
+
# endif
|
98
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 11 && MSGPACK_PP_ITERATION_FINISH_2 >= 11
|
99
|
+
# define MSGPACK_PP_ITERATION_2 11
|
100
|
+
# include MSGPACK_PP_FILENAME_2
|
101
|
+
# undef MSGPACK_PP_ITERATION_2
|
102
|
+
# endif
|
103
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 12 && MSGPACK_PP_ITERATION_FINISH_2 >= 12
|
104
|
+
# define MSGPACK_PP_ITERATION_2 12
|
105
|
+
# include MSGPACK_PP_FILENAME_2
|
106
|
+
# undef MSGPACK_PP_ITERATION_2
|
107
|
+
# endif
|
108
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 13 && MSGPACK_PP_ITERATION_FINISH_2 >= 13
|
109
|
+
# define MSGPACK_PP_ITERATION_2 13
|
110
|
+
# include MSGPACK_PP_FILENAME_2
|
111
|
+
# undef MSGPACK_PP_ITERATION_2
|
112
|
+
# endif
|
113
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 14 && MSGPACK_PP_ITERATION_FINISH_2 >= 14
|
114
|
+
# define MSGPACK_PP_ITERATION_2 14
|
115
|
+
# include MSGPACK_PP_FILENAME_2
|
116
|
+
# undef MSGPACK_PP_ITERATION_2
|
117
|
+
# endif
|
118
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 15 && MSGPACK_PP_ITERATION_FINISH_2 >= 15
|
119
|
+
# define MSGPACK_PP_ITERATION_2 15
|
120
|
+
# include MSGPACK_PP_FILENAME_2
|
121
|
+
# undef MSGPACK_PP_ITERATION_2
|
122
|
+
# endif
|
123
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 16 && MSGPACK_PP_ITERATION_FINISH_2 >= 16
|
124
|
+
# define MSGPACK_PP_ITERATION_2 16
|
125
|
+
# include MSGPACK_PP_FILENAME_2
|
126
|
+
# undef MSGPACK_PP_ITERATION_2
|
127
|
+
# endif
|
128
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 17 && MSGPACK_PP_ITERATION_FINISH_2 >= 17
|
129
|
+
# define MSGPACK_PP_ITERATION_2 17
|
130
|
+
# include MSGPACK_PP_FILENAME_2
|
131
|
+
# undef MSGPACK_PP_ITERATION_2
|
132
|
+
# endif
|
133
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 18 && MSGPACK_PP_ITERATION_FINISH_2 >= 18
|
134
|
+
# define MSGPACK_PP_ITERATION_2 18
|
135
|
+
# include MSGPACK_PP_FILENAME_2
|
136
|
+
# undef MSGPACK_PP_ITERATION_2
|
137
|
+
# endif
|
138
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 19 && MSGPACK_PP_ITERATION_FINISH_2 >= 19
|
139
|
+
# define MSGPACK_PP_ITERATION_2 19
|
140
|
+
# include MSGPACK_PP_FILENAME_2
|
141
|
+
# undef MSGPACK_PP_ITERATION_2
|
142
|
+
# endif
|
143
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 20 && MSGPACK_PP_ITERATION_FINISH_2 >= 20
|
144
|
+
# define MSGPACK_PP_ITERATION_2 20
|
145
|
+
# include MSGPACK_PP_FILENAME_2
|
146
|
+
# undef MSGPACK_PP_ITERATION_2
|
147
|
+
# endif
|
148
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 21 && MSGPACK_PP_ITERATION_FINISH_2 >= 21
|
149
|
+
# define MSGPACK_PP_ITERATION_2 21
|
150
|
+
# include MSGPACK_PP_FILENAME_2
|
151
|
+
# undef MSGPACK_PP_ITERATION_2
|
152
|
+
# endif
|
153
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 22 && MSGPACK_PP_ITERATION_FINISH_2 >= 22
|
154
|
+
# define MSGPACK_PP_ITERATION_2 22
|
155
|
+
# include MSGPACK_PP_FILENAME_2
|
156
|
+
# undef MSGPACK_PP_ITERATION_2
|
157
|
+
# endif
|
158
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 23 && MSGPACK_PP_ITERATION_FINISH_2 >= 23
|
159
|
+
# define MSGPACK_PP_ITERATION_2 23
|
160
|
+
# include MSGPACK_PP_FILENAME_2
|
161
|
+
# undef MSGPACK_PP_ITERATION_2
|
162
|
+
# endif
|
163
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 24 && MSGPACK_PP_ITERATION_FINISH_2 >= 24
|
164
|
+
# define MSGPACK_PP_ITERATION_2 24
|
165
|
+
# include MSGPACK_PP_FILENAME_2
|
166
|
+
# undef MSGPACK_PP_ITERATION_2
|
167
|
+
# endif
|
168
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 25 && MSGPACK_PP_ITERATION_FINISH_2 >= 25
|
169
|
+
# define MSGPACK_PP_ITERATION_2 25
|
170
|
+
# include MSGPACK_PP_FILENAME_2
|
171
|
+
# undef MSGPACK_PP_ITERATION_2
|
172
|
+
# endif
|
173
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 26 && MSGPACK_PP_ITERATION_FINISH_2 >= 26
|
174
|
+
# define MSGPACK_PP_ITERATION_2 26
|
175
|
+
# include MSGPACK_PP_FILENAME_2
|
176
|
+
# undef MSGPACK_PP_ITERATION_2
|
177
|
+
# endif
|
178
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 27 && MSGPACK_PP_ITERATION_FINISH_2 >= 27
|
179
|
+
# define MSGPACK_PP_ITERATION_2 27
|
180
|
+
# include MSGPACK_PP_FILENAME_2
|
181
|
+
# undef MSGPACK_PP_ITERATION_2
|
182
|
+
# endif
|
183
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 28 && MSGPACK_PP_ITERATION_FINISH_2 >= 28
|
184
|
+
# define MSGPACK_PP_ITERATION_2 28
|
185
|
+
# include MSGPACK_PP_FILENAME_2
|
186
|
+
# undef MSGPACK_PP_ITERATION_2
|
187
|
+
# endif
|
188
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 29 && MSGPACK_PP_ITERATION_FINISH_2 >= 29
|
189
|
+
# define MSGPACK_PP_ITERATION_2 29
|
190
|
+
# include MSGPACK_PP_FILENAME_2
|
191
|
+
# undef MSGPACK_PP_ITERATION_2
|
192
|
+
# endif
|
193
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 30 && MSGPACK_PP_ITERATION_FINISH_2 >= 30
|
194
|
+
# define MSGPACK_PP_ITERATION_2 30
|
195
|
+
# include MSGPACK_PP_FILENAME_2
|
196
|
+
# undef MSGPACK_PP_ITERATION_2
|
197
|
+
# endif
|
198
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 31 && MSGPACK_PP_ITERATION_FINISH_2 >= 31
|
199
|
+
# define MSGPACK_PP_ITERATION_2 31
|
200
|
+
# include MSGPACK_PP_FILENAME_2
|
201
|
+
# undef MSGPACK_PP_ITERATION_2
|
202
|
+
# endif
|
203
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 32 && MSGPACK_PP_ITERATION_FINISH_2 >= 32
|
204
|
+
# define MSGPACK_PP_ITERATION_2 32
|
205
|
+
# include MSGPACK_PP_FILENAME_2
|
206
|
+
# undef MSGPACK_PP_ITERATION_2
|
207
|
+
# endif
|
208
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 33 && MSGPACK_PP_ITERATION_FINISH_2 >= 33
|
209
|
+
# define MSGPACK_PP_ITERATION_2 33
|
210
|
+
# include MSGPACK_PP_FILENAME_2
|
211
|
+
# undef MSGPACK_PP_ITERATION_2
|
212
|
+
# endif
|
213
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 34 && MSGPACK_PP_ITERATION_FINISH_2 >= 34
|
214
|
+
# define MSGPACK_PP_ITERATION_2 34
|
215
|
+
# include MSGPACK_PP_FILENAME_2
|
216
|
+
# undef MSGPACK_PP_ITERATION_2
|
217
|
+
# endif
|
218
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 35 && MSGPACK_PP_ITERATION_FINISH_2 >= 35
|
219
|
+
# define MSGPACK_PP_ITERATION_2 35
|
220
|
+
# include MSGPACK_PP_FILENAME_2
|
221
|
+
# undef MSGPACK_PP_ITERATION_2
|
222
|
+
# endif
|
223
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 36 && MSGPACK_PP_ITERATION_FINISH_2 >= 36
|
224
|
+
# define MSGPACK_PP_ITERATION_2 36
|
225
|
+
# include MSGPACK_PP_FILENAME_2
|
226
|
+
# undef MSGPACK_PP_ITERATION_2
|
227
|
+
# endif
|
228
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 37 && MSGPACK_PP_ITERATION_FINISH_2 >= 37
|
229
|
+
# define MSGPACK_PP_ITERATION_2 37
|
230
|
+
# include MSGPACK_PP_FILENAME_2
|
231
|
+
# undef MSGPACK_PP_ITERATION_2
|
232
|
+
# endif
|
233
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 38 && MSGPACK_PP_ITERATION_FINISH_2 >= 38
|
234
|
+
# define MSGPACK_PP_ITERATION_2 38
|
235
|
+
# include MSGPACK_PP_FILENAME_2
|
236
|
+
# undef MSGPACK_PP_ITERATION_2
|
237
|
+
# endif
|
238
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 39 && MSGPACK_PP_ITERATION_FINISH_2 >= 39
|
239
|
+
# define MSGPACK_PP_ITERATION_2 39
|
240
|
+
# include MSGPACK_PP_FILENAME_2
|
241
|
+
# undef MSGPACK_PP_ITERATION_2
|
242
|
+
# endif
|
243
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 40 && MSGPACK_PP_ITERATION_FINISH_2 >= 40
|
244
|
+
# define MSGPACK_PP_ITERATION_2 40
|
245
|
+
# include MSGPACK_PP_FILENAME_2
|
246
|
+
# undef MSGPACK_PP_ITERATION_2
|
247
|
+
# endif
|
248
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 41 && MSGPACK_PP_ITERATION_FINISH_2 >= 41
|
249
|
+
# define MSGPACK_PP_ITERATION_2 41
|
250
|
+
# include MSGPACK_PP_FILENAME_2
|
251
|
+
# undef MSGPACK_PP_ITERATION_2
|
252
|
+
# endif
|
253
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 42 && MSGPACK_PP_ITERATION_FINISH_2 >= 42
|
254
|
+
# define MSGPACK_PP_ITERATION_2 42
|
255
|
+
# include MSGPACK_PP_FILENAME_2
|
256
|
+
# undef MSGPACK_PP_ITERATION_2
|
257
|
+
# endif
|
258
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 43 && MSGPACK_PP_ITERATION_FINISH_2 >= 43
|
259
|
+
# define MSGPACK_PP_ITERATION_2 43
|
260
|
+
# include MSGPACK_PP_FILENAME_2
|
261
|
+
# undef MSGPACK_PP_ITERATION_2
|
262
|
+
# endif
|
263
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 44 && MSGPACK_PP_ITERATION_FINISH_2 >= 44
|
264
|
+
# define MSGPACK_PP_ITERATION_2 44
|
265
|
+
# include MSGPACK_PP_FILENAME_2
|
266
|
+
# undef MSGPACK_PP_ITERATION_2
|
267
|
+
# endif
|
268
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 45 && MSGPACK_PP_ITERATION_FINISH_2 >= 45
|
269
|
+
# define MSGPACK_PP_ITERATION_2 45
|
270
|
+
# include MSGPACK_PP_FILENAME_2
|
271
|
+
# undef MSGPACK_PP_ITERATION_2
|
272
|
+
# endif
|
273
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 46 && MSGPACK_PP_ITERATION_FINISH_2 >= 46
|
274
|
+
# define MSGPACK_PP_ITERATION_2 46
|
275
|
+
# include MSGPACK_PP_FILENAME_2
|
276
|
+
# undef MSGPACK_PP_ITERATION_2
|
277
|
+
# endif
|
278
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 47 && MSGPACK_PP_ITERATION_FINISH_2 >= 47
|
279
|
+
# define MSGPACK_PP_ITERATION_2 47
|
280
|
+
# include MSGPACK_PP_FILENAME_2
|
281
|
+
# undef MSGPACK_PP_ITERATION_2
|
282
|
+
# endif
|
283
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 48 && MSGPACK_PP_ITERATION_FINISH_2 >= 48
|
284
|
+
# define MSGPACK_PP_ITERATION_2 48
|
285
|
+
# include MSGPACK_PP_FILENAME_2
|
286
|
+
# undef MSGPACK_PP_ITERATION_2
|
287
|
+
# endif
|
288
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 49 && MSGPACK_PP_ITERATION_FINISH_2 >= 49
|
289
|
+
# define MSGPACK_PP_ITERATION_2 49
|
290
|
+
# include MSGPACK_PP_FILENAME_2
|
291
|
+
# undef MSGPACK_PP_ITERATION_2
|
292
|
+
# endif
|
293
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 50 && MSGPACK_PP_ITERATION_FINISH_2 >= 50
|
294
|
+
# define MSGPACK_PP_ITERATION_2 50
|
295
|
+
# include MSGPACK_PP_FILENAME_2
|
296
|
+
# undef MSGPACK_PP_ITERATION_2
|
297
|
+
# endif
|
298
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 51 && MSGPACK_PP_ITERATION_FINISH_2 >= 51
|
299
|
+
# define MSGPACK_PP_ITERATION_2 51
|
300
|
+
# include MSGPACK_PP_FILENAME_2
|
301
|
+
# undef MSGPACK_PP_ITERATION_2
|
302
|
+
# endif
|
303
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 52 && MSGPACK_PP_ITERATION_FINISH_2 >= 52
|
304
|
+
# define MSGPACK_PP_ITERATION_2 52
|
305
|
+
# include MSGPACK_PP_FILENAME_2
|
306
|
+
# undef MSGPACK_PP_ITERATION_2
|
307
|
+
# endif
|
308
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 53 && MSGPACK_PP_ITERATION_FINISH_2 >= 53
|
309
|
+
# define MSGPACK_PP_ITERATION_2 53
|
310
|
+
# include MSGPACK_PP_FILENAME_2
|
311
|
+
# undef MSGPACK_PP_ITERATION_2
|
312
|
+
# endif
|
313
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 54 && MSGPACK_PP_ITERATION_FINISH_2 >= 54
|
314
|
+
# define MSGPACK_PP_ITERATION_2 54
|
315
|
+
# include MSGPACK_PP_FILENAME_2
|
316
|
+
# undef MSGPACK_PP_ITERATION_2
|
317
|
+
# endif
|
318
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 55 && MSGPACK_PP_ITERATION_FINISH_2 >= 55
|
319
|
+
# define MSGPACK_PP_ITERATION_2 55
|
320
|
+
# include MSGPACK_PP_FILENAME_2
|
321
|
+
# undef MSGPACK_PP_ITERATION_2
|
322
|
+
# endif
|
323
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 56 && MSGPACK_PP_ITERATION_FINISH_2 >= 56
|
324
|
+
# define MSGPACK_PP_ITERATION_2 56
|
325
|
+
# include MSGPACK_PP_FILENAME_2
|
326
|
+
# undef MSGPACK_PP_ITERATION_2
|
327
|
+
# endif
|
328
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 57 && MSGPACK_PP_ITERATION_FINISH_2 >= 57
|
329
|
+
# define MSGPACK_PP_ITERATION_2 57
|
330
|
+
# include MSGPACK_PP_FILENAME_2
|
331
|
+
# undef MSGPACK_PP_ITERATION_2
|
332
|
+
# endif
|
333
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 58 && MSGPACK_PP_ITERATION_FINISH_2 >= 58
|
334
|
+
# define MSGPACK_PP_ITERATION_2 58
|
335
|
+
# include MSGPACK_PP_FILENAME_2
|
336
|
+
# undef MSGPACK_PP_ITERATION_2
|
337
|
+
# endif
|
338
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 59 && MSGPACK_PP_ITERATION_FINISH_2 >= 59
|
339
|
+
# define MSGPACK_PP_ITERATION_2 59
|
340
|
+
# include MSGPACK_PP_FILENAME_2
|
341
|
+
# undef MSGPACK_PP_ITERATION_2
|
342
|
+
# endif
|
343
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 60 && MSGPACK_PP_ITERATION_FINISH_2 >= 60
|
344
|
+
# define MSGPACK_PP_ITERATION_2 60
|
345
|
+
# include MSGPACK_PP_FILENAME_2
|
346
|
+
# undef MSGPACK_PP_ITERATION_2
|
347
|
+
# endif
|
348
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 61 && MSGPACK_PP_ITERATION_FINISH_2 >= 61
|
349
|
+
# define MSGPACK_PP_ITERATION_2 61
|
350
|
+
# include MSGPACK_PP_FILENAME_2
|
351
|
+
# undef MSGPACK_PP_ITERATION_2
|
352
|
+
# endif
|
353
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 62 && MSGPACK_PP_ITERATION_FINISH_2 >= 62
|
354
|
+
# define MSGPACK_PP_ITERATION_2 62
|
355
|
+
# include MSGPACK_PP_FILENAME_2
|
356
|
+
# undef MSGPACK_PP_ITERATION_2
|
357
|
+
# endif
|
358
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 63 && MSGPACK_PP_ITERATION_FINISH_2 >= 63
|
359
|
+
# define MSGPACK_PP_ITERATION_2 63
|
360
|
+
# include MSGPACK_PP_FILENAME_2
|
361
|
+
# undef MSGPACK_PP_ITERATION_2
|
362
|
+
# endif
|
363
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 64 && MSGPACK_PP_ITERATION_FINISH_2 >= 64
|
364
|
+
# define MSGPACK_PP_ITERATION_2 64
|
365
|
+
# include MSGPACK_PP_FILENAME_2
|
366
|
+
# undef MSGPACK_PP_ITERATION_2
|
367
|
+
# endif
|
368
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 65 && MSGPACK_PP_ITERATION_FINISH_2 >= 65
|
369
|
+
# define MSGPACK_PP_ITERATION_2 65
|
370
|
+
# include MSGPACK_PP_FILENAME_2
|
371
|
+
# undef MSGPACK_PP_ITERATION_2
|
372
|
+
# endif
|
373
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 66 && MSGPACK_PP_ITERATION_FINISH_2 >= 66
|
374
|
+
# define MSGPACK_PP_ITERATION_2 66
|
375
|
+
# include MSGPACK_PP_FILENAME_2
|
376
|
+
# undef MSGPACK_PP_ITERATION_2
|
377
|
+
# endif
|
378
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 67 && MSGPACK_PP_ITERATION_FINISH_2 >= 67
|
379
|
+
# define MSGPACK_PP_ITERATION_2 67
|
380
|
+
# include MSGPACK_PP_FILENAME_2
|
381
|
+
# undef MSGPACK_PP_ITERATION_2
|
382
|
+
# endif
|
383
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 68 && MSGPACK_PP_ITERATION_FINISH_2 >= 68
|
384
|
+
# define MSGPACK_PP_ITERATION_2 68
|
385
|
+
# include MSGPACK_PP_FILENAME_2
|
386
|
+
# undef MSGPACK_PP_ITERATION_2
|
387
|
+
# endif
|
388
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 69 && MSGPACK_PP_ITERATION_FINISH_2 >= 69
|
389
|
+
# define MSGPACK_PP_ITERATION_2 69
|
390
|
+
# include MSGPACK_PP_FILENAME_2
|
391
|
+
# undef MSGPACK_PP_ITERATION_2
|
392
|
+
# endif
|
393
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 70 && MSGPACK_PP_ITERATION_FINISH_2 >= 70
|
394
|
+
# define MSGPACK_PP_ITERATION_2 70
|
395
|
+
# include MSGPACK_PP_FILENAME_2
|
396
|
+
# undef MSGPACK_PP_ITERATION_2
|
397
|
+
# endif
|
398
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 71 && MSGPACK_PP_ITERATION_FINISH_2 >= 71
|
399
|
+
# define MSGPACK_PP_ITERATION_2 71
|
400
|
+
# include MSGPACK_PP_FILENAME_2
|
401
|
+
# undef MSGPACK_PP_ITERATION_2
|
402
|
+
# endif
|
403
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 72 && MSGPACK_PP_ITERATION_FINISH_2 >= 72
|
404
|
+
# define MSGPACK_PP_ITERATION_2 72
|
405
|
+
# include MSGPACK_PP_FILENAME_2
|
406
|
+
# undef MSGPACK_PP_ITERATION_2
|
407
|
+
# endif
|
408
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 73 && MSGPACK_PP_ITERATION_FINISH_2 >= 73
|
409
|
+
# define MSGPACK_PP_ITERATION_2 73
|
410
|
+
# include MSGPACK_PP_FILENAME_2
|
411
|
+
# undef MSGPACK_PP_ITERATION_2
|
412
|
+
# endif
|
413
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 74 && MSGPACK_PP_ITERATION_FINISH_2 >= 74
|
414
|
+
# define MSGPACK_PP_ITERATION_2 74
|
415
|
+
# include MSGPACK_PP_FILENAME_2
|
416
|
+
# undef MSGPACK_PP_ITERATION_2
|
417
|
+
# endif
|
418
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 75 && MSGPACK_PP_ITERATION_FINISH_2 >= 75
|
419
|
+
# define MSGPACK_PP_ITERATION_2 75
|
420
|
+
# include MSGPACK_PP_FILENAME_2
|
421
|
+
# undef MSGPACK_PP_ITERATION_2
|
422
|
+
# endif
|
423
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 76 && MSGPACK_PP_ITERATION_FINISH_2 >= 76
|
424
|
+
# define MSGPACK_PP_ITERATION_2 76
|
425
|
+
# include MSGPACK_PP_FILENAME_2
|
426
|
+
# undef MSGPACK_PP_ITERATION_2
|
427
|
+
# endif
|
428
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 77 && MSGPACK_PP_ITERATION_FINISH_2 >= 77
|
429
|
+
# define MSGPACK_PP_ITERATION_2 77
|
430
|
+
# include MSGPACK_PP_FILENAME_2
|
431
|
+
# undef MSGPACK_PP_ITERATION_2
|
432
|
+
# endif
|
433
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 78 && MSGPACK_PP_ITERATION_FINISH_2 >= 78
|
434
|
+
# define MSGPACK_PP_ITERATION_2 78
|
435
|
+
# include MSGPACK_PP_FILENAME_2
|
436
|
+
# undef MSGPACK_PP_ITERATION_2
|
437
|
+
# endif
|
438
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 79 && MSGPACK_PP_ITERATION_FINISH_2 >= 79
|
439
|
+
# define MSGPACK_PP_ITERATION_2 79
|
440
|
+
# include MSGPACK_PP_FILENAME_2
|
441
|
+
# undef MSGPACK_PP_ITERATION_2
|
442
|
+
# endif
|
443
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 80 && MSGPACK_PP_ITERATION_FINISH_2 >= 80
|
444
|
+
# define MSGPACK_PP_ITERATION_2 80
|
445
|
+
# include MSGPACK_PP_FILENAME_2
|
446
|
+
# undef MSGPACK_PP_ITERATION_2
|
447
|
+
# endif
|
448
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 81 && MSGPACK_PP_ITERATION_FINISH_2 >= 81
|
449
|
+
# define MSGPACK_PP_ITERATION_2 81
|
450
|
+
# include MSGPACK_PP_FILENAME_2
|
451
|
+
# undef MSGPACK_PP_ITERATION_2
|
452
|
+
# endif
|
453
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 82 && MSGPACK_PP_ITERATION_FINISH_2 >= 82
|
454
|
+
# define MSGPACK_PP_ITERATION_2 82
|
455
|
+
# include MSGPACK_PP_FILENAME_2
|
456
|
+
# undef MSGPACK_PP_ITERATION_2
|
457
|
+
# endif
|
458
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 83 && MSGPACK_PP_ITERATION_FINISH_2 >= 83
|
459
|
+
# define MSGPACK_PP_ITERATION_2 83
|
460
|
+
# include MSGPACK_PP_FILENAME_2
|
461
|
+
# undef MSGPACK_PP_ITERATION_2
|
462
|
+
# endif
|
463
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 84 && MSGPACK_PP_ITERATION_FINISH_2 >= 84
|
464
|
+
# define MSGPACK_PP_ITERATION_2 84
|
465
|
+
# include MSGPACK_PP_FILENAME_2
|
466
|
+
# undef MSGPACK_PP_ITERATION_2
|
467
|
+
# endif
|
468
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 85 && MSGPACK_PP_ITERATION_FINISH_2 >= 85
|
469
|
+
# define MSGPACK_PP_ITERATION_2 85
|
470
|
+
# include MSGPACK_PP_FILENAME_2
|
471
|
+
# undef MSGPACK_PP_ITERATION_2
|
472
|
+
# endif
|
473
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 86 && MSGPACK_PP_ITERATION_FINISH_2 >= 86
|
474
|
+
# define MSGPACK_PP_ITERATION_2 86
|
475
|
+
# include MSGPACK_PP_FILENAME_2
|
476
|
+
# undef MSGPACK_PP_ITERATION_2
|
477
|
+
# endif
|
478
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 87 && MSGPACK_PP_ITERATION_FINISH_2 >= 87
|
479
|
+
# define MSGPACK_PP_ITERATION_2 87
|
480
|
+
# include MSGPACK_PP_FILENAME_2
|
481
|
+
# undef MSGPACK_PP_ITERATION_2
|
482
|
+
# endif
|
483
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 88 && MSGPACK_PP_ITERATION_FINISH_2 >= 88
|
484
|
+
# define MSGPACK_PP_ITERATION_2 88
|
485
|
+
# include MSGPACK_PP_FILENAME_2
|
486
|
+
# undef MSGPACK_PP_ITERATION_2
|
487
|
+
# endif
|
488
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 89 && MSGPACK_PP_ITERATION_FINISH_2 >= 89
|
489
|
+
# define MSGPACK_PP_ITERATION_2 89
|
490
|
+
# include MSGPACK_PP_FILENAME_2
|
491
|
+
# undef MSGPACK_PP_ITERATION_2
|
492
|
+
# endif
|
493
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 90 && MSGPACK_PP_ITERATION_FINISH_2 >= 90
|
494
|
+
# define MSGPACK_PP_ITERATION_2 90
|
495
|
+
# include MSGPACK_PP_FILENAME_2
|
496
|
+
# undef MSGPACK_PP_ITERATION_2
|
497
|
+
# endif
|
498
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 91 && MSGPACK_PP_ITERATION_FINISH_2 >= 91
|
499
|
+
# define MSGPACK_PP_ITERATION_2 91
|
500
|
+
# include MSGPACK_PP_FILENAME_2
|
501
|
+
# undef MSGPACK_PP_ITERATION_2
|
502
|
+
# endif
|
503
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 92 && MSGPACK_PP_ITERATION_FINISH_2 >= 92
|
504
|
+
# define MSGPACK_PP_ITERATION_2 92
|
505
|
+
# include MSGPACK_PP_FILENAME_2
|
506
|
+
# undef MSGPACK_PP_ITERATION_2
|
507
|
+
# endif
|
508
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 93 && MSGPACK_PP_ITERATION_FINISH_2 >= 93
|
509
|
+
# define MSGPACK_PP_ITERATION_2 93
|
510
|
+
# include MSGPACK_PP_FILENAME_2
|
511
|
+
# undef MSGPACK_PP_ITERATION_2
|
512
|
+
# endif
|
513
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 94 && MSGPACK_PP_ITERATION_FINISH_2 >= 94
|
514
|
+
# define MSGPACK_PP_ITERATION_2 94
|
515
|
+
# include MSGPACK_PP_FILENAME_2
|
516
|
+
# undef MSGPACK_PP_ITERATION_2
|
517
|
+
# endif
|
518
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 95 && MSGPACK_PP_ITERATION_FINISH_2 >= 95
|
519
|
+
# define MSGPACK_PP_ITERATION_2 95
|
520
|
+
# include MSGPACK_PP_FILENAME_2
|
521
|
+
# undef MSGPACK_PP_ITERATION_2
|
522
|
+
# endif
|
523
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 96 && MSGPACK_PP_ITERATION_FINISH_2 >= 96
|
524
|
+
# define MSGPACK_PP_ITERATION_2 96
|
525
|
+
# include MSGPACK_PP_FILENAME_2
|
526
|
+
# undef MSGPACK_PP_ITERATION_2
|
527
|
+
# endif
|
528
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 97 && MSGPACK_PP_ITERATION_FINISH_2 >= 97
|
529
|
+
# define MSGPACK_PP_ITERATION_2 97
|
530
|
+
# include MSGPACK_PP_FILENAME_2
|
531
|
+
# undef MSGPACK_PP_ITERATION_2
|
532
|
+
# endif
|
533
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 98 && MSGPACK_PP_ITERATION_FINISH_2 >= 98
|
534
|
+
# define MSGPACK_PP_ITERATION_2 98
|
535
|
+
# include MSGPACK_PP_FILENAME_2
|
536
|
+
# undef MSGPACK_PP_ITERATION_2
|
537
|
+
# endif
|
538
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 99 && MSGPACK_PP_ITERATION_FINISH_2 >= 99
|
539
|
+
# define MSGPACK_PP_ITERATION_2 99
|
540
|
+
# include MSGPACK_PP_FILENAME_2
|
541
|
+
# undef MSGPACK_PP_ITERATION_2
|
542
|
+
# endif
|
543
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 100 && MSGPACK_PP_ITERATION_FINISH_2 >= 100
|
544
|
+
# define MSGPACK_PP_ITERATION_2 100
|
545
|
+
# include MSGPACK_PP_FILENAME_2
|
546
|
+
# undef MSGPACK_PP_ITERATION_2
|
547
|
+
# endif
|
548
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 101 && MSGPACK_PP_ITERATION_FINISH_2 >= 101
|
549
|
+
# define MSGPACK_PP_ITERATION_2 101
|
550
|
+
# include MSGPACK_PP_FILENAME_2
|
551
|
+
# undef MSGPACK_PP_ITERATION_2
|
552
|
+
# endif
|
553
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 102 && MSGPACK_PP_ITERATION_FINISH_2 >= 102
|
554
|
+
# define MSGPACK_PP_ITERATION_2 102
|
555
|
+
# include MSGPACK_PP_FILENAME_2
|
556
|
+
# undef MSGPACK_PP_ITERATION_2
|
557
|
+
# endif
|
558
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 103 && MSGPACK_PP_ITERATION_FINISH_2 >= 103
|
559
|
+
# define MSGPACK_PP_ITERATION_2 103
|
560
|
+
# include MSGPACK_PP_FILENAME_2
|
561
|
+
# undef MSGPACK_PP_ITERATION_2
|
562
|
+
# endif
|
563
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 104 && MSGPACK_PP_ITERATION_FINISH_2 >= 104
|
564
|
+
# define MSGPACK_PP_ITERATION_2 104
|
565
|
+
# include MSGPACK_PP_FILENAME_2
|
566
|
+
# undef MSGPACK_PP_ITERATION_2
|
567
|
+
# endif
|
568
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 105 && MSGPACK_PP_ITERATION_FINISH_2 >= 105
|
569
|
+
# define MSGPACK_PP_ITERATION_2 105
|
570
|
+
# include MSGPACK_PP_FILENAME_2
|
571
|
+
# undef MSGPACK_PP_ITERATION_2
|
572
|
+
# endif
|
573
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 106 && MSGPACK_PP_ITERATION_FINISH_2 >= 106
|
574
|
+
# define MSGPACK_PP_ITERATION_2 106
|
575
|
+
# include MSGPACK_PP_FILENAME_2
|
576
|
+
# undef MSGPACK_PP_ITERATION_2
|
577
|
+
# endif
|
578
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 107 && MSGPACK_PP_ITERATION_FINISH_2 >= 107
|
579
|
+
# define MSGPACK_PP_ITERATION_2 107
|
580
|
+
# include MSGPACK_PP_FILENAME_2
|
581
|
+
# undef MSGPACK_PP_ITERATION_2
|
582
|
+
# endif
|
583
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 108 && MSGPACK_PP_ITERATION_FINISH_2 >= 108
|
584
|
+
# define MSGPACK_PP_ITERATION_2 108
|
585
|
+
# include MSGPACK_PP_FILENAME_2
|
586
|
+
# undef MSGPACK_PP_ITERATION_2
|
587
|
+
# endif
|
588
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 109 && MSGPACK_PP_ITERATION_FINISH_2 >= 109
|
589
|
+
# define MSGPACK_PP_ITERATION_2 109
|
590
|
+
# include MSGPACK_PP_FILENAME_2
|
591
|
+
# undef MSGPACK_PP_ITERATION_2
|
592
|
+
# endif
|
593
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 110 && MSGPACK_PP_ITERATION_FINISH_2 >= 110
|
594
|
+
# define MSGPACK_PP_ITERATION_2 110
|
595
|
+
# include MSGPACK_PP_FILENAME_2
|
596
|
+
# undef MSGPACK_PP_ITERATION_2
|
597
|
+
# endif
|
598
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 111 && MSGPACK_PP_ITERATION_FINISH_2 >= 111
|
599
|
+
# define MSGPACK_PP_ITERATION_2 111
|
600
|
+
# include MSGPACK_PP_FILENAME_2
|
601
|
+
# undef MSGPACK_PP_ITERATION_2
|
602
|
+
# endif
|
603
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 112 && MSGPACK_PP_ITERATION_FINISH_2 >= 112
|
604
|
+
# define MSGPACK_PP_ITERATION_2 112
|
605
|
+
# include MSGPACK_PP_FILENAME_2
|
606
|
+
# undef MSGPACK_PP_ITERATION_2
|
607
|
+
# endif
|
608
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 113 && MSGPACK_PP_ITERATION_FINISH_2 >= 113
|
609
|
+
# define MSGPACK_PP_ITERATION_2 113
|
610
|
+
# include MSGPACK_PP_FILENAME_2
|
611
|
+
# undef MSGPACK_PP_ITERATION_2
|
612
|
+
# endif
|
613
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 114 && MSGPACK_PP_ITERATION_FINISH_2 >= 114
|
614
|
+
# define MSGPACK_PP_ITERATION_2 114
|
615
|
+
# include MSGPACK_PP_FILENAME_2
|
616
|
+
# undef MSGPACK_PP_ITERATION_2
|
617
|
+
# endif
|
618
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 115 && MSGPACK_PP_ITERATION_FINISH_2 >= 115
|
619
|
+
# define MSGPACK_PP_ITERATION_2 115
|
620
|
+
# include MSGPACK_PP_FILENAME_2
|
621
|
+
# undef MSGPACK_PP_ITERATION_2
|
622
|
+
# endif
|
623
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 116 && MSGPACK_PP_ITERATION_FINISH_2 >= 116
|
624
|
+
# define MSGPACK_PP_ITERATION_2 116
|
625
|
+
# include MSGPACK_PP_FILENAME_2
|
626
|
+
# undef MSGPACK_PP_ITERATION_2
|
627
|
+
# endif
|
628
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 117 && MSGPACK_PP_ITERATION_FINISH_2 >= 117
|
629
|
+
# define MSGPACK_PP_ITERATION_2 117
|
630
|
+
# include MSGPACK_PP_FILENAME_2
|
631
|
+
# undef MSGPACK_PP_ITERATION_2
|
632
|
+
# endif
|
633
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 118 && MSGPACK_PP_ITERATION_FINISH_2 >= 118
|
634
|
+
# define MSGPACK_PP_ITERATION_2 118
|
635
|
+
# include MSGPACK_PP_FILENAME_2
|
636
|
+
# undef MSGPACK_PP_ITERATION_2
|
637
|
+
# endif
|
638
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 119 && MSGPACK_PP_ITERATION_FINISH_2 >= 119
|
639
|
+
# define MSGPACK_PP_ITERATION_2 119
|
640
|
+
# include MSGPACK_PP_FILENAME_2
|
641
|
+
# undef MSGPACK_PP_ITERATION_2
|
642
|
+
# endif
|
643
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 120 && MSGPACK_PP_ITERATION_FINISH_2 >= 120
|
644
|
+
# define MSGPACK_PP_ITERATION_2 120
|
645
|
+
# include MSGPACK_PP_FILENAME_2
|
646
|
+
# undef MSGPACK_PP_ITERATION_2
|
647
|
+
# endif
|
648
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 121 && MSGPACK_PP_ITERATION_FINISH_2 >= 121
|
649
|
+
# define MSGPACK_PP_ITERATION_2 121
|
650
|
+
# include MSGPACK_PP_FILENAME_2
|
651
|
+
# undef MSGPACK_PP_ITERATION_2
|
652
|
+
# endif
|
653
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 122 && MSGPACK_PP_ITERATION_FINISH_2 >= 122
|
654
|
+
# define MSGPACK_PP_ITERATION_2 122
|
655
|
+
# include MSGPACK_PP_FILENAME_2
|
656
|
+
# undef MSGPACK_PP_ITERATION_2
|
657
|
+
# endif
|
658
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 123 && MSGPACK_PP_ITERATION_FINISH_2 >= 123
|
659
|
+
# define MSGPACK_PP_ITERATION_2 123
|
660
|
+
# include MSGPACK_PP_FILENAME_2
|
661
|
+
# undef MSGPACK_PP_ITERATION_2
|
662
|
+
# endif
|
663
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 124 && MSGPACK_PP_ITERATION_FINISH_2 >= 124
|
664
|
+
# define MSGPACK_PP_ITERATION_2 124
|
665
|
+
# include MSGPACK_PP_FILENAME_2
|
666
|
+
# undef MSGPACK_PP_ITERATION_2
|
667
|
+
# endif
|
668
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 125 && MSGPACK_PP_ITERATION_FINISH_2 >= 125
|
669
|
+
# define MSGPACK_PP_ITERATION_2 125
|
670
|
+
# include MSGPACK_PP_FILENAME_2
|
671
|
+
# undef MSGPACK_PP_ITERATION_2
|
672
|
+
# endif
|
673
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 126 && MSGPACK_PP_ITERATION_FINISH_2 >= 126
|
674
|
+
# define MSGPACK_PP_ITERATION_2 126
|
675
|
+
# include MSGPACK_PP_FILENAME_2
|
676
|
+
# undef MSGPACK_PP_ITERATION_2
|
677
|
+
# endif
|
678
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 127 && MSGPACK_PP_ITERATION_FINISH_2 >= 127
|
679
|
+
# define MSGPACK_PP_ITERATION_2 127
|
680
|
+
# include MSGPACK_PP_FILENAME_2
|
681
|
+
# undef MSGPACK_PP_ITERATION_2
|
682
|
+
# endif
|
683
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 128 && MSGPACK_PP_ITERATION_FINISH_2 >= 128
|
684
|
+
# define MSGPACK_PP_ITERATION_2 128
|
685
|
+
# include MSGPACK_PP_FILENAME_2
|
686
|
+
# undef MSGPACK_PP_ITERATION_2
|
687
|
+
# endif
|
688
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 129 && MSGPACK_PP_ITERATION_FINISH_2 >= 129
|
689
|
+
# define MSGPACK_PP_ITERATION_2 129
|
690
|
+
# include MSGPACK_PP_FILENAME_2
|
691
|
+
# undef MSGPACK_PP_ITERATION_2
|
692
|
+
# endif
|
693
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 130 && MSGPACK_PP_ITERATION_FINISH_2 >= 130
|
694
|
+
# define MSGPACK_PP_ITERATION_2 130
|
695
|
+
# include MSGPACK_PP_FILENAME_2
|
696
|
+
# undef MSGPACK_PP_ITERATION_2
|
697
|
+
# endif
|
698
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 131 && MSGPACK_PP_ITERATION_FINISH_2 >= 131
|
699
|
+
# define MSGPACK_PP_ITERATION_2 131
|
700
|
+
# include MSGPACK_PP_FILENAME_2
|
701
|
+
# undef MSGPACK_PP_ITERATION_2
|
702
|
+
# endif
|
703
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 132 && MSGPACK_PP_ITERATION_FINISH_2 >= 132
|
704
|
+
# define MSGPACK_PP_ITERATION_2 132
|
705
|
+
# include MSGPACK_PP_FILENAME_2
|
706
|
+
# undef MSGPACK_PP_ITERATION_2
|
707
|
+
# endif
|
708
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 133 && MSGPACK_PP_ITERATION_FINISH_2 >= 133
|
709
|
+
# define MSGPACK_PP_ITERATION_2 133
|
710
|
+
# include MSGPACK_PP_FILENAME_2
|
711
|
+
# undef MSGPACK_PP_ITERATION_2
|
712
|
+
# endif
|
713
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 134 && MSGPACK_PP_ITERATION_FINISH_2 >= 134
|
714
|
+
# define MSGPACK_PP_ITERATION_2 134
|
715
|
+
# include MSGPACK_PP_FILENAME_2
|
716
|
+
# undef MSGPACK_PP_ITERATION_2
|
717
|
+
# endif
|
718
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 135 && MSGPACK_PP_ITERATION_FINISH_2 >= 135
|
719
|
+
# define MSGPACK_PP_ITERATION_2 135
|
720
|
+
# include MSGPACK_PP_FILENAME_2
|
721
|
+
# undef MSGPACK_PP_ITERATION_2
|
722
|
+
# endif
|
723
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 136 && MSGPACK_PP_ITERATION_FINISH_2 >= 136
|
724
|
+
# define MSGPACK_PP_ITERATION_2 136
|
725
|
+
# include MSGPACK_PP_FILENAME_2
|
726
|
+
# undef MSGPACK_PP_ITERATION_2
|
727
|
+
# endif
|
728
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 137 && MSGPACK_PP_ITERATION_FINISH_2 >= 137
|
729
|
+
# define MSGPACK_PP_ITERATION_2 137
|
730
|
+
# include MSGPACK_PP_FILENAME_2
|
731
|
+
# undef MSGPACK_PP_ITERATION_2
|
732
|
+
# endif
|
733
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 138 && MSGPACK_PP_ITERATION_FINISH_2 >= 138
|
734
|
+
# define MSGPACK_PP_ITERATION_2 138
|
735
|
+
# include MSGPACK_PP_FILENAME_2
|
736
|
+
# undef MSGPACK_PP_ITERATION_2
|
737
|
+
# endif
|
738
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 139 && MSGPACK_PP_ITERATION_FINISH_2 >= 139
|
739
|
+
# define MSGPACK_PP_ITERATION_2 139
|
740
|
+
# include MSGPACK_PP_FILENAME_2
|
741
|
+
# undef MSGPACK_PP_ITERATION_2
|
742
|
+
# endif
|
743
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 140 && MSGPACK_PP_ITERATION_FINISH_2 >= 140
|
744
|
+
# define MSGPACK_PP_ITERATION_2 140
|
745
|
+
# include MSGPACK_PP_FILENAME_2
|
746
|
+
# undef MSGPACK_PP_ITERATION_2
|
747
|
+
# endif
|
748
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 141 && MSGPACK_PP_ITERATION_FINISH_2 >= 141
|
749
|
+
# define MSGPACK_PP_ITERATION_2 141
|
750
|
+
# include MSGPACK_PP_FILENAME_2
|
751
|
+
# undef MSGPACK_PP_ITERATION_2
|
752
|
+
# endif
|
753
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 142 && MSGPACK_PP_ITERATION_FINISH_2 >= 142
|
754
|
+
# define MSGPACK_PP_ITERATION_2 142
|
755
|
+
# include MSGPACK_PP_FILENAME_2
|
756
|
+
# undef MSGPACK_PP_ITERATION_2
|
757
|
+
# endif
|
758
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 143 && MSGPACK_PP_ITERATION_FINISH_2 >= 143
|
759
|
+
# define MSGPACK_PP_ITERATION_2 143
|
760
|
+
# include MSGPACK_PP_FILENAME_2
|
761
|
+
# undef MSGPACK_PP_ITERATION_2
|
762
|
+
# endif
|
763
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 144 && MSGPACK_PP_ITERATION_FINISH_2 >= 144
|
764
|
+
# define MSGPACK_PP_ITERATION_2 144
|
765
|
+
# include MSGPACK_PP_FILENAME_2
|
766
|
+
# undef MSGPACK_PP_ITERATION_2
|
767
|
+
# endif
|
768
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 145 && MSGPACK_PP_ITERATION_FINISH_2 >= 145
|
769
|
+
# define MSGPACK_PP_ITERATION_2 145
|
770
|
+
# include MSGPACK_PP_FILENAME_2
|
771
|
+
# undef MSGPACK_PP_ITERATION_2
|
772
|
+
# endif
|
773
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 146 && MSGPACK_PP_ITERATION_FINISH_2 >= 146
|
774
|
+
# define MSGPACK_PP_ITERATION_2 146
|
775
|
+
# include MSGPACK_PP_FILENAME_2
|
776
|
+
# undef MSGPACK_PP_ITERATION_2
|
777
|
+
# endif
|
778
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 147 && MSGPACK_PP_ITERATION_FINISH_2 >= 147
|
779
|
+
# define MSGPACK_PP_ITERATION_2 147
|
780
|
+
# include MSGPACK_PP_FILENAME_2
|
781
|
+
# undef MSGPACK_PP_ITERATION_2
|
782
|
+
# endif
|
783
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 148 && MSGPACK_PP_ITERATION_FINISH_2 >= 148
|
784
|
+
# define MSGPACK_PP_ITERATION_2 148
|
785
|
+
# include MSGPACK_PP_FILENAME_2
|
786
|
+
# undef MSGPACK_PP_ITERATION_2
|
787
|
+
# endif
|
788
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 149 && MSGPACK_PP_ITERATION_FINISH_2 >= 149
|
789
|
+
# define MSGPACK_PP_ITERATION_2 149
|
790
|
+
# include MSGPACK_PP_FILENAME_2
|
791
|
+
# undef MSGPACK_PP_ITERATION_2
|
792
|
+
# endif
|
793
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 150 && MSGPACK_PP_ITERATION_FINISH_2 >= 150
|
794
|
+
# define MSGPACK_PP_ITERATION_2 150
|
795
|
+
# include MSGPACK_PP_FILENAME_2
|
796
|
+
# undef MSGPACK_PP_ITERATION_2
|
797
|
+
# endif
|
798
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 151 && MSGPACK_PP_ITERATION_FINISH_2 >= 151
|
799
|
+
# define MSGPACK_PP_ITERATION_2 151
|
800
|
+
# include MSGPACK_PP_FILENAME_2
|
801
|
+
# undef MSGPACK_PP_ITERATION_2
|
802
|
+
# endif
|
803
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 152 && MSGPACK_PP_ITERATION_FINISH_2 >= 152
|
804
|
+
# define MSGPACK_PP_ITERATION_2 152
|
805
|
+
# include MSGPACK_PP_FILENAME_2
|
806
|
+
# undef MSGPACK_PP_ITERATION_2
|
807
|
+
# endif
|
808
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 153 && MSGPACK_PP_ITERATION_FINISH_2 >= 153
|
809
|
+
# define MSGPACK_PP_ITERATION_2 153
|
810
|
+
# include MSGPACK_PP_FILENAME_2
|
811
|
+
# undef MSGPACK_PP_ITERATION_2
|
812
|
+
# endif
|
813
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 154 && MSGPACK_PP_ITERATION_FINISH_2 >= 154
|
814
|
+
# define MSGPACK_PP_ITERATION_2 154
|
815
|
+
# include MSGPACK_PP_FILENAME_2
|
816
|
+
# undef MSGPACK_PP_ITERATION_2
|
817
|
+
# endif
|
818
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 155 && MSGPACK_PP_ITERATION_FINISH_2 >= 155
|
819
|
+
# define MSGPACK_PP_ITERATION_2 155
|
820
|
+
# include MSGPACK_PP_FILENAME_2
|
821
|
+
# undef MSGPACK_PP_ITERATION_2
|
822
|
+
# endif
|
823
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 156 && MSGPACK_PP_ITERATION_FINISH_2 >= 156
|
824
|
+
# define MSGPACK_PP_ITERATION_2 156
|
825
|
+
# include MSGPACK_PP_FILENAME_2
|
826
|
+
# undef MSGPACK_PP_ITERATION_2
|
827
|
+
# endif
|
828
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 157 && MSGPACK_PP_ITERATION_FINISH_2 >= 157
|
829
|
+
# define MSGPACK_PP_ITERATION_2 157
|
830
|
+
# include MSGPACK_PP_FILENAME_2
|
831
|
+
# undef MSGPACK_PP_ITERATION_2
|
832
|
+
# endif
|
833
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 158 && MSGPACK_PP_ITERATION_FINISH_2 >= 158
|
834
|
+
# define MSGPACK_PP_ITERATION_2 158
|
835
|
+
# include MSGPACK_PP_FILENAME_2
|
836
|
+
# undef MSGPACK_PP_ITERATION_2
|
837
|
+
# endif
|
838
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 159 && MSGPACK_PP_ITERATION_FINISH_2 >= 159
|
839
|
+
# define MSGPACK_PP_ITERATION_2 159
|
840
|
+
# include MSGPACK_PP_FILENAME_2
|
841
|
+
# undef MSGPACK_PP_ITERATION_2
|
842
|
+
# endif
|
843
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 160 && MSGPACK_PP_ITERATION_FINISH_2 >= 160
|
844
|
+
# define MSGPACK_PP_ITERATION_2 160
|
845
|
+
# include MSGPACK_PP_FILENAME_2
|
846
|
+
# undef MSGPACK_PP_ITERATION_2
|
847
|
+
# endif
|
848
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 161 && MSGPACK_PP_ITERATION_FINISH_2 >= 161
|
849
|
+
# define MSGPACK_PP_ITERATION_2 161
|
850
|
+
# include MSGPACK_PP_FILENAME_2
|
851
|
+
# undef MSGPACK_PP_ITERATION_2
|
852
|
+
# endif
|
853
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 162 && MSGPACK_PP_ITERATION_FINISH_2 >= 162
|
854
|
+
# define MSGPACK_PP_ITERATION_2 162
|
855
|
+
# include MSGPACK_PP_FILENAME_2
|
856
|
+
# undef MSGPACK_PP_ITERATION_2
|
857
|
+
# endif
|
858
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 163 && MSGPACK_PP_ITERATION_FINISH_2 >= 163
|
859
|
+
# define MSGPACK_PP_ITERATION_2 163
|
860
|
+
# include MSGPACK_PP_FILENAME_2
|
861
|
+
# undef MSGPACK_PP_ITERATION_2
|
862
|
+
# endif
|
863
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 164 && MSGPACK_PP_ITERATION_FINISH_2 >= 164
|
864
|
+
# define MSGPACK_PP_ITERATION_2 164
|
865
|
+
# include MSGPACK_PP_FILENAME_2
|
866
|
+
# undef MSGPACK_PP_ITERATION_2
|
867
|
+
# endif
|
868
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 165 && MSGPACK_PP_ITERATION_FINISH_2 >= 165
|
869
|
+
# define MSGPACK_PP_ITERATION_2 165
|
870
|
+
# include MSGPACK_PP_FILENAME_2
|
871
|
+
# undef MSGPACK_PP_ITERATION_2
|
872
|
+
# endif
|
873
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 166 && MSGPACK_PP_ITERATION_FINISH_2 >= 166
|
874
|
+
# define MSGPACK_PP_ITERATION_2 166
|
875
|
+
# include MSGPACK_PP_FILENAME_2
|
876
|
+
# undef MSGPACK_PP_ITERATION_2
|
877
|
+
# endif
|
878
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 167 && MSGPACK_PP_ITERATION_FINISH_2 >= 167
|
879
|
+
# define MSGPACK_PP_ITERATION_2 167
|
880
|
+
# include MSGPACK_PP_FILENAME_2
|
881
|
+
# undef MSGPACK_PP_ITERATION_2
|
882
|
+
# endif
|
883
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 168 && MSGPACK_PP_ITERATION_FINISH_2 >= 168
|
884
|
+
# define MSGPACK_PP_ITERATION_2 168
|
885
|
+
# include MSGPACK_PP_FILENAME_2
|
886
|
+
# undef MSGPACK_PP_ITERATION_2
|
887
|
+
# endif
|
888
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 169 && MSGPACK_PP_ITERATION_FINISH_2 >= 169
|
889
|
+
# define MSGPACK_PP_ITERATION_2 169
|
890
|
+
# include MSGPACK_PP_FILENAME_2
|
891
|
+
# undef MSGPACK_PP_ITERATION_2
|
892
|
+
# endif
|
893
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 170 && MSGPACK_PP_ITERATION_FINISH_2 >= 170
|
894
|
+
# define MSGPACK_PP_ITERATION_2 170
|
895
|
+
# include MSGPACK_PP_FILENAME_2
|
896
|
+
# undef MSGPACK_PP_ITERATION_2
|
897
|
+
# endif
|
898
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 171 && MSGPACK_PP_ITERATION_FINISH_2 >= 171
|
899
|
+
# define MSGPACK_PP_ITERATION_2 171
|
900
|
+
# include MSGPACK_PP_FILENAME_2
|
901
|
+
# undef MSGPACK_PP_ITERATION_2
|
902
|
+
# endif
|
903
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 172 && MSGPACK_PP_ITERATION_FINISH_2 >= 172
|
904
|
+
# define MSGPACK_PP_ITERATION_2 172
|
905
|
+
# include MSGPACK_PP_FILENAME_2
|
906
|
+
# undef MSGPACK_PP_ITERATION_2
|
907
|
+
# endif
|
908
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 173 && MSGPACK_PP_ITERATION_FINISH_2 >= 173
|
909
|
+
# define MSGPACK_PP_ITERATION_2 173
|
910
|
+
# include MSGPACK_PP_FILENAME_2
|
911
|
+
# undef MSGPACK_PP_ITERATION_2
|
912
|
+
# endif
|
913
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 174 && MSGPACK_PP_ITERATION_FINISH_2 >= 174
|
914
|
+
# define MSGPACK_PP_ITERATION_2 174
|
915
|
+
# include MSGPACK_PP_FILENAME_2
|
916
|
+
# undef MSGPACK_PP_ITERATION_2
|
917
|
+
# endif
|
918
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 175 && MSGPACK_PP_ITERATION_FINISH_2 >= 175
|
919
|
+
# define MSGPACK_PP_ITERATION_2 175
|
920
|
+
# include MSGPACK_PP_FILENAME_2
|
921
|
+
# undef MSGPACK_PP_ITERATION_2
|
922
|
+
# endif
|
923
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 176 && MSGPACK_PP_ITERATION_FINISH_2 >= 176
|
924
|
+
# define MSGPACK_PP_ITERATION_2 176
|
925
|
+
# include MSGPACK_PP_FILENAME_2
|
926
|
+
# undef MSGPACK_PP_ITERATION_2
|
927
|
+
# endif
|
928
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 177 && MSGPACK_PP_ITERATION_FINISH_2 >= 177
|
929
|
+
# define MSGPACK_PP_ITERATION_2 177
|
930
|
+
# include MSGPACK_PP_FILENAME_2
|
931
|
+
# undef MSGPACK_PP_ITERATION_2
|
932
|
+
# endif
|
933
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 178 && MSGPACK_PP_ITERATION_FINISH_2 >= 178
|
934
|
+
# define MSGPACK_PP_ITERATION_2 178
|
935
|
+
# include MSGPACK_PP_FILENAME_2
|
936
|
+
# undef MSGPACK_PP_ITERATION_2
|
937
|
+
# endif
|
938
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 179 && MSGPACK_PP_ITERATION_FINISH_2 >= 179
|
939
|
+
# define MSGPACK_PP_ITERATION_2 179
|
940
|
+
# include MSGPACK_PP_FILENAME_2
|
941
|
+
# undef MSGPACK_PP_ITERATION_2
|
942
|
+
# endif
|
943
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 180 && MSGPACK_PP_ITERATION_FINISH_2 >= 180
|
944
|
+
# define MSGPACK_PP_ITERATION_2 180
|
945
|
+
# include MSGPACK_PP_FILENAME_2
|
946
|
+
# undef MSGPACK_PP_ITERATION_2
|
947
|
+
# endif
|
948
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 181 && MSGPACK_PP_ITERATION_FINISH_2 >= 181
|
949
|
+
# define MSGPACK_PP_ITERATION_2 181
|
950
|
+
# include MSGPACK_PP_FILENAME_2
|
951
|
+
# undef MSGPACK_PP_ITERATION_2
|
952
|
+
# endif
|
953
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 182 && MSGPACK_PP_ITERATION_FINISH_2 >= 182
|
954
|
+
# define MSGPACK_PP_ITERATION_2 182
|
955
|
+
# include MSGPACK_PP_FILENAME_2
|
956
|
+
# undef MSGPACK_PP_ITERATION_2
|
957
|
+
# endif
|
958
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 183 && MSGPACK_PP_ITERATION_FINISH_2 >= 183
|
959
|
+
# define MSGPACK_PP_ITERATION_2 183
|
960
|
+
# include MSGPACK_PP_FILENAME_2
|
961
|
+
# undef MSGPACK_PP_ITERATION_2
|
962
|
+
# endif
|
963
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 184 && MSGPACK_PP_ITERATION_FINISH_2 >= 184
|
964
|
+
# define MSGPACK_PP_ITERATION_2 184
|
965
|
+
# include MSGPACK_PP_FILENAME_2
|
966
|
+
# undef MSGPACK_PP_ITERATION_2
|
967
|
+
# endif
|
968
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 185 && MSGPACK_PP_ITERATION_FINISH_2 >= 185
|
969
|
+
# define MSGPACK_PP_ITERATION_2 185
|
970
|
+
# include MSGPACK_PP_FILENAME_2
|
971
|
+
# undef MSGPACK_PP_ITERATION_2
|
972
|
+
# endif
|
973
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 186 && MSGPACK_PP_ITERATION_FINISH_2 >= 186
|
974
|
+
# define MSGPACK_PP_ITERATION_2 186
|
975
|
+
# include MSGPACK_PP_FILENAME_2
|
976
|
+
# undef MSGPACK_PP_ITERATION_2
|
977
|
+
# endif
|
978
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 187 && MSGPACK_PP_ITERATION_FINISH_2 >= 187
|
979
|
+
# define MSGPACK_PP_ITERATION_2 187
|
980
|
+
# include MSGPACK_PP_FILENAME_2
|
981
|
+
# undef MSGPACK_PP_ITERATION_2
|
982
|
+
# endif
|
983
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 188 && MSGPACK_PP_ITERATION_FINISH_2 >= 188
|
984
|
+
# define MSGPACK_PP_ITERATION_2 188
|
985
|
+
# include MSGPACK_PP_FILENAME_2
|
986
|
+
# undef MSGPACK_PP_ITERATION_2
|
987
|
+
# endif
|
988
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 189 && MSGPACK_PP_ITERATION_FINISH_2 >= 189
|
989
|
+
# define MSGPACK_PP_ITERATION_2 189
|
990
|
+
# include MSGPACK_PP_FILENAME_2
|
991
|
+
# undef MSGPACK_PP_ITERATION_2
|
992
|
+
# endif
|
993
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 190 && MSGPACK_PP_ITERATION_FINISH_2 >= 190
|
994
|
+
# define MSGPACK_PP_ITERATION_2 190
|
995
|
+
# include MSGPACK_PP_FILENAME_2
|
996
|
+
# undef MSGPACK_PP_ITERATION_2
|
997
|
+
# endif
|
998
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 191 && MSGPACK_PP_ITERATION_FINISH_2 >= 191
|
999
|
+
# define MSGPACK_PP_ITERATION_2 191
|
1000
|
+
# include MSGPACK_PP_FILENAME_2
|
1001
|
+
# undef MSGPACK_PP_ITERATION_2
|
1002
|
+
# endif
|
1003
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 192 && MSGPACK_PP_ITERATION_FINISH_2 >= 192
|
1004
|
+
# define MSGPACK_PP_ITERATION_2 192
|
1005
|
+
# include MSGPACK_PP_FILENAME_2
|
1006
|
+
# undef MSGPACK_PP_ITERATION_2
|
1007
|
+
# endif
|
1008
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 193 && MSGPACK_PP_ITERATION_FINISH_2 >= 193
|
1009
|
+
# define MSGPACK_PP_ITERATION_2 193
|
1010
|
+
# include MSGPACK_PP_FILENAME_2
|
1011
|
+
# undef MSGPACK_PP_ITERATION_2
|
1012
|
+
# endif
|
1013
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 194 && MSGPACK_PP_ITERATION_FINISH_2 >= 194
|
1014
|
+
# define MSGPACK_PP_ITERATION_2 194
|
1015
|
+
# include MSGPACK_PP_FILENAME_2
|
1016
|
+
# undef MSGPACK_PP_ITERATION_2
|
1017
|
+
# endif
|
1018
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 195 && MSGPACK_PP_ITERATION_FINISH_2 >= 195
|
1019
|
+
# define MSGPACK_PP_ITERATION_2 195
|
1020
|
+
# include MSGPACK_PP_FILENAME_2
|
1021
|
+
# undef MSGPACK_PP_ITERATION_2
|
1022
|
+
# endif
|
1023
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 196 && MSGPACK_PP_ITERATION_FINISH_2 >= 196
|
1024
|
+
# define MSGPACK_PP_ITERATION_2 196
|
1025
|
+
# include MSGPACK_PP_FILENAME_2
|
1026
|
+
# undef MSGPACK_PP_ITERATION_2
|
1027
|
+
# endif
|
1028
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 197 && MSGPACK_PP_ITERATION_FINISH_2 >= 197
|
1029
|
+
# define MSGPACK_PP_ITERATION_2 197
|
1030
|
+
# include MSGPACK_PP_FILENAME_2
|
1031
|
+
# undef MSGPACK_PP_ITERATION_2
|
1032
|
+
# endif
|
1033
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 198 && MSGPACK_PP_ITERATION_FINISH_2 >= 198
|
1034
|
+
# define MSGPACK_PP_ITERATION_2 198
|
1035
|
+
# include MSGPACK_PP_FILENAME_2
|
1036
|
+
# undef MSGPACK_PP_ITERATION_2
|
1037
|
+
# endif
|
1038
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 199 && MSGPACK_PP_ITERATION_FINISH_2 >= 199
|
1039
|
+
# define MSGPACK_PP_ITERATION_2 199
|
1040
|
+
# include MSGPACK_PP_FILENAME_2
|
1041
|
+
# undef MSGPACK_PP_ITERATION_2
|
1042
|
+
# endif
|
1043
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 200 && MSGPACK_PP_ITERATION_FINISH_2 >= 200
|
1044
|
+
# define MSGPACK_PP_ITERATION_2 200
|
1045
|
+
# include MSGPACK_PP_FILENAME_2
|
1046
|
+
# undef MSGPACK_PP_ITERATION_2
|
1047
|
+
# endif
|
1048
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 201 && MSGPACK_PP_ITERATION_FINISH_2 >= 201
|
1049
|
+
# define MSGPACK_PP_ITERATION_2 201
|
1050
|
+
# include MSGPACK_PP_FILENAME_2
|
1051
|
+
# undef MSGPACK_PP_ITERATION_2
|
1052
|
+
# endif
|
1053
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 202 && MSGPACK_PP_ITERATION_FINISH_2 >= 202
|
1054
|
+
# define MSGPACK_PP_ITERATION_2 202
|
1055
|
+
# include MSGPACK_PP_FILENAME_2
|
1056
|
+
# undef MSGPACK_PP_ITERATION_2
|
1057
|
+
# endif
|
1058
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 203 && MSGPACK_PP_ITERATION_FINISH_2 >= 203
|
1059
|
+
# define MSGPACK_PP_ITERATION_2 203
|
1060
|
+
# include MSGPACK_PP_FILENAME_2
|
1061
|
+
# undef MSGPACK_PP_ITERATION_2
|
1062
|
+
# endif
|
1063
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 204 && MSGPACK_PP_ITERATION_FINISH_2 >= 204
|
1064
|
+
# define MSGPACK_PP_ITERATION_2 204
|
1065
|
+
# include MSGPACK_PP_FILENAME_2
|
1066
|
+
# undef MSGPACK_PP_ITERATION_2
|
1067
|
+
# endif
|
1068
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 205 && MSGPACK_PP_ITERATION_FINISH_2 >= 205
|
1069
|
+
# define MSGPACK_PP_ITERATION_2 205
|
1070
|
+
# include MSGPACK_PP_FILENAME_2
|
1071
|
+
# undef MSGPACK_PP_ITERATION_2
|
1072
|
+
# endif
|
1073
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 206 && MSGPACK_PP_ITERATION_FINISH_2 >= 206
|
1074
|
+
# define MSGPACK_PP_ITERATION_2 206
|
1075
|
+
# include MSGPACK_PP_FILENAME_2
|
1076
|
+
# undef MSGPACK_PP_ITERATION_2
|
1077
|
+
# endif
|
1078
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 207 && MSGPACK_PP_ITERATION_FINISH_2 >= 207
|
1079
|
+
# define MSGPACK_PP_ITERATION_2 207
|
1080
|
+
# include MSGPACK_PP_FILENAME_2
|
1081
|
+
# undef MSGPACK_PP_ITERATION_2
|
1082
|
+
# endif
|
1083
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 208 && MSGPACK_PP_ITERATION_FINISH_2 >= 208
|
1084
|
+
# define MSGPACK_PP_ITERATION_2 208
|
1085
|
+
# include MSGPACK_PP_FILENAME_2
|
1086
|
+
# undef MSGPACK_PP_ITERATION_2
|
1087
|
+
# endif
|
1088
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 209 && MSGPACK_PP_ITERATION_FINISH_2 >= 209
|
1089
|
+
# define MSGPACK_PP_ITERATION_2 209
|
1090
|
+
# include MSGPACK_PP_FILENAME_2
|
1091
|
+
# undef MSGPACK_PP_ITERATION_2
|
1092
|
+
# endif
|
1093
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 210 && MSGPACK_PP_ITERATION_FINISH_2 >= 210
|
1094
|
+
# define MSGPACK_PP_ITERATION_2 210
|
1095
|
+
# include MSGPACK_PP_FILENAME_2
|
1096
|
+
# undef MSGPACK_PP_ITERATION_2
|
1097
|
+
# endif
|
1098
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 211 && MSGPACK_PP_ITERATION_FINISH_2 >= 211
|
1099
|
+
# define MSGPACK_PP_ITERATION_2 211
|
1100
|
+
# include MSGPACK_PP_FILENAME_2
|
1101
|
+
# undef MSGPACK_PP_ITERATION_2
|
1102
|
+
# endif
|
1103
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 212 && MSGPACK_PP_ITERATION_FINISH_2 >= 212
|
1104
|
+
# define MSGPACK_PP_ITERATION_2 212
|
1105
|
+
# include MSGPACK_PP_FILENAME_2
|
1106
|
+
# undef MSGPACK_PP_ITERATION_2
|
1107
|
+
# endif
|
1108
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 213 && MSGPACK_PP_ITERATION_FINISH_2 >= 213
|
1109
|
+
# define MSGPACK_PP_ITERATION_2 213
|
1110
|
+
# include MSGPACK_PP_FILENAME_2
|
1111
|
+
# undef MSGPACK_PP_ITERATION_2
|
1112
|
+
# endif
|
1113
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 214 && MSGPACK_PP_ITERATION_FINISH_2 >= 214
|
1114
|
+
# define MSGPACK_PP_ITERATION_2 214
|
1115
|
+
# include MSGPACK_PP_FILENAME_2
|
1116
|
+
# undef MSGPACK_PP_ITERATION_2
|
1117
|
+
# endif
|
1118
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 215 && MSGPACK_PP_ITERATION_FINISH_2 >= 215
|
1119
|
+
# define MSGPACK_PP_ITERATION_2 215
|
1120
|
+
# include MSGPACK_PP_FILENAME_2
|
1121
|
+
# undef MSGPACK_PP_ITERATION_2
|
1122
|
+
# endif
|
1123
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 216 && MSGPACK_PP_ITERATION_FINISH_2 >= 216
|
1124
|
+
# define MSGPACK_PP_ITERATION_2 216
|
1125
|
+
# include MSGPACK_PP_FILENAME_2
|
1126
|
+
# undef MSGPACK_PP_ITERATION_2
|
1127
|
+
# endif
|
1128
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 217 && MSGPACK_PP_ITERATION_FINISH_2 >= 217
|
1129
|
+
# define MSGPACK_PP_ITERATION_2 217
|
1130
|
+
# include MSGPACK_PP_FILENAME_2
|
1131
|
+
# undef MSGPACK_PP_ITERATION_2
|
1132
|
+
# endif
|
1133
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 218 && MSGPACK_PP_ITERATION_FINISH_2 >= 218
|
1134
|
+
# define MSGPACK_PP_ITERATION_2 218
|
1135
|
+
# include MSGPACK_PP_FILENAME_2
|
1136
|
+
# undef MSGPACK_PP_ITERATION_2
|
1137
|
+
# endif
|
1138
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 219 && MSGPACK_PP_ITERATION_FINISH_2 >= 219
|
1139
|
+
# define MSGPACK_PP_ITERATION_2 219
|
1140
|
+
# include MSGPACK_PP_FILENAME_2
|
1141
|
+
# undef MSGPACK_PP_ITERATION_2
|
1142
|
+
# endif
|
1143
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 220 && MSGPACK_PP_ITERATION_FINISH_2 >= 220
|
1144
|
+
# define MSGPACK_PP_ITERATION_2 220
|
1145
|
+
# include MSGPACK_PP_FILENAME_2
|
1146
|
+
# undef MSGPACK_PP_ITERATION_2
|
1147
|
+
# endif
|
1148
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 221 && MSGPACK_PP_ITERATION_FINISH_2 >= 221
|
1149
|
+
# define MSGPACK_PP_ITERATION_2 221
|
1150
|
+
# include MSGPACK_PP_FILENAME_2
|
1151
|
+
# undef MSGPACK_PP_ITERATION_2
|
1152
|
+
# endif
|
1153
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 222 && MSGPACK_PP_ITERATION_FINISH_2 >= 222
|
1154
|
+
# define MSGPACK_PP_ITERATION_2 222
|
1155
|
+
# include MSGPACK_PP_FILENAME_2
|
1156
|
+
# undef MSGPACK_PP_ITERATION_2
|
1157
|
+
# endif
|
1158
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 223 && MSGPACK_PP_ITERATION_FINISH_2 >= 223
|
1159
|
+
# define MSGPACK_PP_ITERATION_2 223
|
1160
|
+
# include MSGPACK_PP_FILENAME_2
|
1161
|
+
# undef MSGPACK_PP_ITERATION_2
|
1162
|
+
# endif
|
1163
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 224 && MSGPACK_PP_ITERATION_FINISH_2 >= 224
|
1164
|
+
# define MSGPACK_PP_ITERATION_2 224
|
1165
|
+
# include MSGPACK_PP_FILENAME_2
|
1166
|
+
# undef MSGPACK_PP_ITERATION_2
|
1167
|
+
# endif
|
1168
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 225 && MSGPACK_PP_ITERATION_FINISH_2 >= 225
|
1169
|
+
# define MSGPACK_PP_ITERATION_2 225
|
1170
|
+
# include MSGPACK_PP_FILENAME_2
|
1171
|
+
# undef MSGPACK_PP_ITERATION_2
|
1172
|
+
# endif
|
1173
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 226 && MSGPACK_PP_ITERATION_FINISH_2 >= 226
|
1174
|
+
# define MSGPACK_PP_ITERATION_2 226
|
1175
|
+
# include MSGPACK_PP_FILENAME_2
|
1176
|
+
# undef MSGPACK_PP_ITERATION_2
|
1177
|
+
# endif
|
1178
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 227 && MSGPACK_PP_ITERATION_FINISH_2 >= 227
|
1179
|
+
# define MSGPACK_PP_ITERATION_2 227
|
1180
|
+
# include MSGPACK_PP_FILENAME_2
|
1181
|
+
# undef MSGPACK_PP_ITERATION_2
|
1182
|
+
# endif
|
1183
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 228 && MSGPACK_PP_ITERATION_FINISH_2 >= 228
|
1184
|
+
# define MSGPACK_PP_ITERATION_2 228
|
1185
|
+
# include MSGPACK_PP_FILENAME_2
|
1186
|
+
# undef MSGPACK_PP_ITERATION_2
|
1187
|
+
# endif
|
1188
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 229 && MSGPACK_PP_ITERATION_FINISH_2 >= 229
|
1189
|
+
# define MSGPACK_PP_ITERATION_2 229
|
1190
|
+
# include MSGPACK_PP_FILENAME_2
|
1191
|
+
# undef MSGPACK_PP_ITERATION_2
|
1192
|
+
# endif
|
1193
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 230 && MSGPACK_PP_ITERATION_FINISH_2 >= 230
|
1194
|
+
# define MSGPACK_PP_ITERATION_2 230
|
1195
|
+
# include MSGPACK_PP_FILENAME_2
|
1196
|
+
# undef MSGPACK_PP_ITERATION_2
|
1197
|
+
# endif
|
1198
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 231 && MSGPACK_PP_ITERATION_FINISH_2 >= 231
|
1199
|
+
# define MSGPACK_PP_ITERATION_2 231
|
1200
|
+
# include MSGPACK_PP_FILENAME_2
|
1201
|
+
# undef MSGPACK_PP_ITERATION_2
|
1202
|
+
# endif
|
1203
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 232 && MSGPACK_PP_ITERATION_FINISH_2 >= 232
|
1204
|
+
# define MSGPACK_PP_ITERATION_2 232
|
1205
|
+
# include MSGPACK_PP_FILENAME_2
|
1206
|
+
# undef MSGPACK_PP_ITERATION_2
|
1207
|
+
# endif
|
1208
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 233 && MSGPACK_PP_ITERATION_FINISH_2 >= 233
|
1209
|
+
# define MSGPACK_PP_ITERATION_2 233
|
1210
|
+
# include MSGPACK_PP_FILENAME_2
|
1211
|
+
# undef MSGPACK_PP_ITERATION_2
|
1212
|
+
# endif
|
1213
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 234 && MSGPACK_PP_ITERATION_FINISH_2 >= 234
|
1214
|
+
# define MSGPACK_PP_ITERATION_2 234
|
1215
|
+
# include MSGPACK_PP_FILENAME_2
|
1216
|
+
# undef MSGPACK_PP_ITERATION_2
|
1217
|
+
# endif
|
1218
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 235 && MSGPACK_PP_ITERATION_FINISH_2 >= 235
|
1219
|
+
# define MSGPACK_PP_ITERATION_2 235
|
1220
|
+
# include MSGPACK_PP_FILENAME_2
|
1221
|
+
# undef MSGPACK_PP_ITERATION_2
|
1222
|
+
# endif
|
1223
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 236 && MSGPACK_PP_ITERATION_FINISH_2 >= 236
|
1224
|
+
# define MSGPACK_PP_ITERATION_2 236
|
1225
|
+
# include MSGPACK_PP_FILENAME_2
|
1226
|
+
# undef MSGPACK_PP_ITERATION_2
|
1227
|
+
# endif
|
1228
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 237 && MSGPACK_PP_ITERATION_FINISH_2 >= 237
|
1229
|
+
# define MSGPACK_PP_ITERATION_2 237
|
1230
|
+
# include MSGPACK_PP_FILENAME_2
|
1231
|
+
# undef MSGPACK_PP_ITERATION_2
|
1232
|
+
# endif
|
1233
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 238 && MSGPACK_PP_ITERATION_FINISH_2 >= 238
|
1234
|
+
# define MSGPACK_PP_ITERATION_2 238
|
1235
|
+
# include MSGPACK_PP_FILENAME_2
|
1236
|
+
# undef MSGPACK_PP_ITERATION_2
|
1237
|
+
# endif
|
1238
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 239 && MSGPACK_PP_ITERATION_FINISH_2 >= 239
|
1239
|
+
# define MSGPACK_PP_ITERATION_2 239
|
1240
|
+
# include MSGPACK_PP_FILENAME_2
|
1241
|
+
# undef MSGPACK_PP_ITERATION_2
|
1242
|
+
# endif
|
1243
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 240 && MSGPACK_PP_ITERATION_FINISH_2 >= 240
|
1244
|
+
# define MSGPACK_PP_ITERATION_2 240
|
1245
|
+
# include MSGPACK_PP_FILENAME_2
|
1246
|
+
# undef MSGPACK_PP_ITERATION_2
|
1247
|
+
# endif
|
1248
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 241 && MSGPACK_PP_ITERATION_FINISH_2 >= 241
|
1249
|
+
# define MSGPACK_PP_ITERATION_2 241
|
1250
|
+
# include MSGPACK_PP_FILENAME_2
|
1251
|
+
# undef MSGPACK_PP_ITERATION_2
|
1252
|
+
# endif
|
1253
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 242 && MSGPACK_PP_ITERATION_FINISH_2 >= 242
|
1254
|
+
# define MSGPACK_PP_ITERATION_2 242
|
1255
|
+
# include MSGPACK_PP_FILENAME_2
|
1256
|
+
# undef MSGPACK_PP_ITERATION_2
|
1257
|
+
# endif
|
1258
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 243 && MSGPACK_PP_ITERATION_FINISH_2 >= 243
|
1259
|
+
# define MSGPACK_PP_ITERATION_2 243
|
1260
|
+
# include MSGPACK_PP_FILENAME_2
|
1261
|
+
# undef MSGPACK_PP_ITERATION_2
|
1262
|
+
# endif
|
1263
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 244 && MSGPACK_PP_ITERATION_FINISH_2 >= 244
|
1264
|
+
# define MSGPACK_PP_ITERATION_2 244
|
1265
|
+
# include MSGPACK_PP_FILENAME_2
|
1266
|
+
# undef MSGPACK_PP_ITERATION_2
|
1267
|
+
# endif
|
1268
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 245 && MSGPACK_PP_ITERATION_FINISH_2 >= 245
|
1269
|
+
# define MSGPACK_PP_ITERATION_2 245
|
1270
|
+
# include MSGPACK_PP_FILENAME_2
|
1271
|
+
# undef MSGPACK_PP_ITERATION_2
|
1272
|
+
# endif
|
1273
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 246 && MSGPACK_PP_ITERATION_FINISH_2 >= 246
|
1274
|
+
# define MSGPACK_PP_ITERATION_2 246
|
1275
|
+
# include MSGPACK_PP_FILENAME_2
|
1276
|
+
# undef MSGPACK_PP_ITERATION_2
|
1277
|
+
# endif
|
1278
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 247 && MSGPACK_PP_ITERATION_FINISH_2 >= 247
|
1279
|
+
# define MSGPACK_PP_ITERATION_2 247
|
1280
|
+
# include MSGPACK_PP_FILENAME_2
|
1281
|
+
# undef MSGPACK_PP_ITERATION_2
|
1282
|
+
# endif
|
1283
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 248 && MSGPACK_PP_ITERATION_FINISH_2 >= 248
|
1284
|
+
# define MSGPACK_PP_ITERATION_2 248
|
1285
|
+
# include MSGPACK_PP_FILENAME_2
|
1286
|
+
# undef MSGPACK_PP_ITERATION_2
|
1287
|
+
# endif
|
1288
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 249 && MSGPACK_PP_ITERATION_FINISH_2 >= 249
|
1289
|
+
# define MSGPACK_PP_ITERATION_2 249
|
1290
|
+
# include MSGPACK_PP_FILENAME_2
|
1291
|
+
# undef MSGPACK_PP_ITERATION_2
|
1292
|
+
# endif
|
1293
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 250 && MSGPACK_PP_ITERATION_FINISH_2 >= 250
|
1294
|
+
# define MSGPACK_PP_ITERATION_2 250
|
1295
|
+
# include MSGPACK_PP_FILENAME_2
|
1296
|
+
# undef MSGPACK_PP_ITERATION_2
|
1297
|
+
# endif
|
1298
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 251 && MSGPACK_PP_ITERATION_FINISH_2 >= 251
|
1299
|
+
# define MSGPACK_PP_ITERATION_2 251
|
1300
|
+
# include MSGPACK_PP_FILENAME_2
|
1301
|
+
# undef MSGPACK_PP_ITERATION_2
|
1302
|
+
# endif
|
1303
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 252 && MSGPACK_PP_ITERATION_FINISH_2 >= 252
|
1304
|
+
# define MSGPACK_PP_ITERATION_2 252
|
1305
|
+
# include MSGPACK_PP_FILENAME_2
|
1306
|
+
# undef MSGPACK_PP_ITERATION_2
|
1307
|
+
# endif
|
1308
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 253 && MSGPACK_PP_ITERATION_FINISH_2 >= 253
|
1309
|
+
# define MSGPACK_PP_ITERATION_2 253
|
1310
|
+
# include MSGPACK_PP_FILENAME_2
|
1311
|
+
# undef MSGPACK_PP_ITERATION_2
|
1312
|
+
# endif
|
1313
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 254 && MSGPACK_PP_ITERATION_FINISH_2 >= 254
|
1314
|
+
# define MSGPACK_PP_ITERATION_2 254
|
1315
|
+
# include MSGPACK_PP_FILENAME_2
|
1316
|
+
# undef MSGPACK_PP_ITERATION_2
|
1317
|
+
# endif
|
1318
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 255 && MSGPACK_PP_ITERATION_FINISH_2 >= 255
|
1319
|
+
# define MSGPACK_PP_ITERATION_2 255
|
1320
|
+
# include MSGPACK_PP_FILENAME_2
|
1321
|
+
# undef MSGPACK_PP_ITERATION_2
|
1322
|
+
# endif
|
1323
|
+
# if MSGPACK_PP_ITERATION_START_2 <= 256 && MSGPACK_PP_ITERATION_FINISH_2 >= 256
|
1324
|
+
# define MSGPACK_PP_ITERATION_2 256
|
1325
|
+
# include MSGPACK_PP_FILENAME_2
|
1326
|
+
# undef MSGPACK_PP_ITERATION_2
|
1327
|
+
# endif
|
1328
|
+
# endif
|
1329
|
+
#
|
1330
|
+
# undef MSGPACK_PP_ITERATION_DEPTH
|
1331
|
+
# define MSGPACK_PP_ITERATION_DEPTH() 1
|
1332
|
+
#
|
1333
|
+
# undef MSGPACK_PP_ITERATION_START_2
|
1334
|
+
# undef MSGPACK_PP_ITERATION_FINISH_2
|
1335
|
+
# undef MSGPACK_PP_FILENAME_2
|
1336
|
+
#
|
1337
|
+
# undef MSGPACK_PP_ITERATION_FLAGS_2
|
1338
|
+
# undef MSGPACK_PP_ITERATION_PARAMS_2
|