├── .github └── workflows │ ├── release.yml │ └── windows-build.yml ├── .gitignore ├── .travis.yml ├── BENCHMARK.md ├── CREDITS ├── Dockerfile ├── Dockerfile.validate ├── EXPERIMENTAL ├── LICENSE ├── MIGRATION_2.2.0.md ├── README.md ├── benchmark_results_2025-08-25_18-43-01.json ├── composer.json ├── config.m4 ├── config.w32 ├── examples ├── benchmark_ordered_data.php ├── benchmark_ordered_data_demo.php ├── benchmark_range_queries.php ├── benchmark_real_world_patterns.php ├── debug_iterator_performance.php ├── iterator-vs-sequential-test.php ├── iterator_performance_analysis.md ├── judy-bench-bitset.php ├── judy-bench-int_to_int.php ├── judy-bench-realistic-judy.php ├── judy-bench-realistic-php-array.php ├── judy-bench-string_to_int.php ├── judy-read-performance-test.php ├── judy.php ├── run-benchmarks-robust.php ├── run-benchmarks.php └── run_comprehensive_benchmarks.php ├── judy-2.2.0 ├── .gitignore ├── .travis.yml ├── BENCHMARK.md ├── BENCHMARK_IMPROVEMENT_PLAN.md ├── CREDITS ├── Dockerfile ├── EXPERIMENTAL ├── LICENSE ├── MIGRATION_2.2.0.md ├── PERFORMANCE_OPTIMIZATION_PLAN.md ├── README.md ├── composer.json ├── config.m4 ├── config.w32 ├── configure.ac ├── examples │ ├── benchmark_ordered_data.php │ ├── benchmark_ordered_data_demo.php │ ├── benchmark_range_queries.php │ ├── benchmark_real_world_patterns.php │ ├── debug_iterator_performance.php │ ├── iterator-vs-sequential-test.php │ ├── iterator_performance_analysis.md │ ├── judy-bench-bitset.php │ ├── judy-bench-int_to_int.php │ ├── judy-bench-realistic-judy.php │ ├── judy-bench-realistic-php-array.php │ ├── judy-bench-string_to_int.php │ ├── judy-read-performance-test.php │ ├── judy.php │ ├── run-benchmarks-robust.php │ ├── run-benchmarks.php │ └── run_comprehensive_benchmarks.php ├── judy_arrayaccess.c ├── judy_arrayaccess.dep ├── judy_arrayaccess.h ├── judy_handlers.c ├── judy_handlers.dep ├── judy_handlers.h ├── judy_iterator.c ├── judy_iterator.dep ├── judy_iterator.h ├── package.xml ├── php_judy.c ├── php_judy.dep ├── php_judy.h └── tests │ ├── 001.phpt │ ├── bitset_001.phpt │ ├── bitset_002.phpt │ ├── bitset_003.phpt │ ├── bitset_004.phpt │ ├── bitset_005.phpt │ ├── bitset_006.phpt │ ├── bitset_007.phpt │ ├── count_method_loop_int_to_int_001.phpt │ ├── count_method_loop_string_to_mixed_001.phpt │ ├── foreach_iterator_int_to_int_001.phpt │ ├── foreach_iterator_int_to_mixed_001.phpt │ ├── foreach_negative_indices_int_to_int_001.phpt │ ├── foreach_with_vardump_int_to_int_001.phpt │ ├── int_to_int_001.phpt │ ├── int_to_int_002.phpt │ ├── int_to_int_003.phpt │ ├── int_to_int_004.phpt │ ├── int_to_int_005.phpt │ ├── int_to_int_006.phpt │ ├── int_to_int_007.phpt │ ├── int_to_int_008.phpt │ ├── int_to_mixed_001.phpt │ ├── int_to_mixed_002.phpt │ ├── int_to_mixed_003.phpt │ ├── int_to_mixed_004.phpt │ ├── int_to_mixed_005.phpt │ ├── int_to_mixed_006.phpt │ ├── int_to_mixed_007.phpt │ ├── iterator_interface_001.phpt │ ├── iterator_methods_individual_001.phpt │ ├── iterator_methods_simple_001.phpt │ ├── iterator_next_bug_fix_001.phpt │ ├── iterator_next_invalid_behavior_001.phpt │ ├── iterator_rewind_bug_fix_001.phpt │ ├── iterator_rewind_empty_bitset_001.phpt │ ├── iterator_segfault_fix_001.phpt │ ├── iterator_valid_performance_001.phpt │ ├── judy_error.phpt │ ├── judy_foreach_bitset.phpt │ ├── judy_foreach_int_to_int.phpt │ ├── judy_foreach_int_to_mixed.phpt │ ├── judy_foreach_string_to_int.phpt │ ├── judy_foreach_string_to_mixed.phpt │ ├── judy_type.phpt │ ├── multiple_instances_count_int_to_int_001.phpt │ ├── multiple_instances_count_string_to_mixed_001.phpt │ ├── string_to_int_001.phpt │ ├── string_to_int_002.phpt │ ├── string_to_int_003.phpt │ ├── string_to_int_004.phpt │ ├── string_to_int_005.phpt │ ├── string_to_mixed_001.phpt │ ├── string_to_mixed_002.phpt │ ├── string_to_mixed_003.phpt │ ├── string_to_mixed_004.phpt │ ├── string_to_mixed_005.phpt │ ├── strings_as_keys.phpt │ └── strings_as_values.phpt ├── judy_arrayaccess.c ├── judy_arrayaccess.h ├── judy_handlers.c ├── judy_handlers.h ├── judy_iterator.c ├── judy_iterator.h ├── package.xml ├── php_judy.c ├── php_judy.h ├── test-package └── judy-2.2.0 │ ├── .gitignore │ ├── .travis.yml │ ├── CREDITS │ ├── EXPERIMENTAL │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── config.m4 │ ├── config.w32 │ ├── configure.ac │ ├── examples │ ├── iterator-vs-sequential-test.php │ ├── judy-bench-bitset.php │ ├── judy-bench-int_to_int.php │ ├── judy-bench-realistic-judy.php │ ├── judy-bench-realistic-php-array.php │ ├── judy-bench-string_to_int.php │ ├── judy-read-performance-test.php │ ├── judy.php │ ├── run-benchmarks-robust.php │ └── run-benchmarks.php │ ├── judy_arrayaccess.c │ ├── judy_arrayaccess.h │ ├── judy_handlers.c │ ├── judy_handlers.h │ ├── judy_iterator.c │ ├── judy_iterator.h │ ├── package.xml │ ├── php_judy.c │ ├── php_judy.h │ └── tests │ ├── 001.phpt │ ├── bitset_001.phpt │ ├── bitset_002.phpt │ ├── bitset_003.phpt │ ├── bitset_004.phpt │ ├── bitset_005.phpt │ ├── bitset_006.phpt │ ├── bitset_007.phpt │ ├── count_method_loop_int_to_int_001.phpt │ ├── count_method_loop_string_to_mixed_001.phpt │ ├── foreach_iterator_int_to_int_001.phpt │ ├── foreach_iterator_int_to_mixed_001.phpt │ ├── foreach_negative_indices_int_to_int_001.phpt │ ├── foreach_with_vardump_int_to_int_001.phpt │ ├── int_to_int_001.phpt │ ├── int_to_int_002.phpt │ ├── int_to_int_003.phpt │ ├── int_to_int_004.phpt │ ├── int_to_int_005.phpt │ ├── int_to_int_006.phpt │ ├── int_to_int_007.phpt │ ├── int_to_int_008.phpt │ ├── int_to_mixed_001.phpt │ ├── int_to_mixed_002.phpt │ ├── int_to_mixed_003.phpt │ ├── int_to_mixed_004.phpt │ ├── int_to_mixed_005.phpt │ ├── int_to_mixed_006.phpt │ ├── int_to_mixed_007.phpt │ ├── iterator_interface_001.phpt │ ├── iterator_methods_individual_001.phpt │ ├── iterator_methods_simple_001.phpt │ ├── iterator_next_bug_fix_001.phpt │ ├── iterator_rewind_bug_fix_001.phpt │ ├── iterator_segfault_fix_001.phpt │ ├── judy_error.phpt │ ├── judy_foreach_bitset.phpt │ ├── judy_foreach_int_to_int.phpt │ ├── judy_foreach_int_to_mixed.phpt │ ├── judy_foreach_string_to_int.phpt │ ├── judy_foreach_string_to_mixed.phpt │ ├── judy_type.phpt │ ├── multiple_instances_count_int_to_int_001.phpt │ ├── multiple_instances_count_string_to_mixed_001.phpt │ ├── string_to_int_001.phpt │ ├── string_to_int_002.phpt │ ├── string_to_int_003.phpt │ ├── string_to_int_004.phpt │ ├── string_to_int_005.phpt │ ├── string_to_mixed_001.phpt │ ├── string_to_mixed_002.phpt │ ├── string_to_mixed_003.phpt │ ├── string_to_mixed_004.phpt │ ├── string_to_mixed_005.phpt │ ├── strings_as_keys.phpt │ └── strings_as_values.phpt └── tests ├── 001.phpt ├── bitset_001.phpt ├── bitset_002.phpt ├── bitset_003.phpt ├── bitset_004.phpt ├── bitset_005.phpt ├── bitset_006.phpt ├── bitset_007.phpt ├── count_method_loop_int_to_int_001.phpt ├── count_method_loop_string_to_mixed_001.phpt ├── foreach_iterator_int_to_int_001.phpt ├── foreach_iterator_int_to_mixed_001.phpt ├── foreach_negative_indices_int_to_int_001.phpt ├── foreach_with_vardump_int_to_int_001.phpt ├── int_to_int_001.phpt ├── int_to_int_002.phpt ├── int_to_int_003.phpt ├── int_to_int_004.phpt ├── int_to_int_005.phpt ├── int_to_int_006.phpt ├── int_to_int_007.phpt ├── int_to_int_008.phpt ├── int_to_mixed_001.phpt ├── int_to_mixed_002.phpt ├── int_to_mixed_003.phpt ├── int_to_mixed_004.phpt ├── int_to_mixed_005.phpt ├── int_to_mixed_006.phpt ├── int_to_mixed_007.phpt ├── iterator_interface_001.phpt ├── iterator_methods_individual_001.phpt ├── iterator_methods_simple_001.phpt ├── iterator_next_bug_fix_001.phpt ├── iterator_next_invalid_behavior_001.phpt ├── iterator_rewind_bug_fix_001.phpt ├── iterator_rewind_empty_bitset_001.phpt ├── iterator_segfault_fix_001.phpt ├── iterator_valid_performance_001.phpt ├── judy_error.phpt ├── judy_foreach_bitset.phpt ├── judy_foreach_int_to_int.phpt ├── judy_foreach_int_to_mixed.phpt ├── judy_foreach_string_to_int.phpt ├── judy_foreach_string_to_mixed.phpt ├── judy_type.phpt ├── multiple_instances_count_int_to_int_001.phpt ├── multiple_instances_count_string_to_mixed_001.phpt ├── string_to_int_001.phpt ├── string_to_int_002.phpt ├── string_to_int_003.phpt ├── string_to_int_004.phpt ├── string_to_int_005.phpt ├── string_to_mixed_001.phpt ├── string_to_mixed_002.phpt ├── string_to_mixed_003.phpt ├── string_to_mixed_004.phpt ├── string_to_mixed_005.phpt ├── strings_as_keys.phpt └── strings_as_values.phpt /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/windows-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/.github/workflows/windows-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/.travis.yml -------------------------------------------------------------------------------- /BENCHMARK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/BENCHMARK.md -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- 1 | judy 2 | Nicolas Brousse 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/Dockerfile.validate -------------------------------------------------------------------------------- /EXPERIMENTAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/EXPERIMENTAL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/LICENSE -------------------------------------------------------------------------------- /MIGRATION_2.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/MIGRATION_2.2.0.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/README.md -------------------------------------------------------------------------------- /benchmark_results_2025-08-25_18-43-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/benchmark_results_2025-08-25_18-43-01.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/composer.json -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/config.w32 -------------------------------------------------------------------------------- /examples/benchmark_ordered_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/examples/benchmark_ordered_data.php -------------------------------------------------------------------------------- /examples/benchmark_ordered_data_demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/examples/benchmark_ordered_data_demo.php -------------------------------------------------------------------------------- /examples/benchmark_range_queries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/examples/benchmark_range_queries.php -------------------------------------------------------------------------------- /examples/benchmark_real_world_patterns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/examples/benchmark_real_world_patterns.php -------------------------------------------------------------------------------- /examples/debug_iterator_performance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/examples/debug_iterator_performance.php -------------------------------------------------------------------------------- /examples/iterator-vs-sequential-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/examples/iterator-vs-sequential-test.php -------------------------------------------------------------------------------- /examples/iterator_performance_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/examples/iterator_performance_analysis.md -------------------------------------------------------------------------------- /examples/judy-bench-bitset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/examples/judy-bench-bitset.php -------------------------------------------------------------------------------- /examples/judy-bench-int_to_int.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/examples/judy-bench-int_to_int.php -------------------------------------------------------------------------------- /examples/judy-bench-realistic-judy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/examples/judy-bench-realistic-judy.php -------------------------------------------------------------------------------- /examples/judy-bench-realistic-php-array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/examples/judy-bench-realistic-php-array.php -------------------------------------------------------------------------------- /examples/judy-bench-string_to_int.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/examples/judy-bench-string_to_int.php -------------------------------------------------------------------------------- /examples/judy-read-performance-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/examples/judy-read-performance-test.php -------------------------------------------------------------------------------- /examples/judy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/examples/judy.php -------------------------------------------------------------------------------- /examples/run-benchmarks-robust.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/examples/run-benchmarks-robust.php -------------------------------------------------------------------------------- /examples/run-benchmarks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/examples/run-benchmarks.php -------------------------------------------------------------------------------- /examples/run_comprehensive_benchmarks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/examples/run_comprehensive_benchmarks.php -------------------------------------------------------------------------------- /judy-2.2.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/.gitignore -------------------------------------------------------------------------------- /judy-2.2.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/.travis.yml -------------------------------------------------------------------------------- /judy-2.2.0/BENCHMARK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/BENCHMARK.md -------------------------------------------------------------------------------- /judy-2.2.0/BENCHMARK_IMPROVEMENT_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/BENCHMARK_IMPROVEMENT_PLAN.md -------------------------------------------------------------------------------- /judy-2.2.0/CREDITS: -------------------------------------------------------------------------------- 1 | judy 2 | Nicolas Brousse 3 | -------------------------------------------------------------------------------- /judy-2.2.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/Dockerfile -------------------------------------------------------------------------------- /judy-2.2.0/EXPERIMENTAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/EXPERIMENTAL -------------------------------------------------------------------------------- /judy-2.2.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/LICENSE -------------------------------------------------------------------------------- /judy-2.2.0/MIGRATION_2.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/MIGRATION_2.2.0.md -------------------------------------------------------------------------------- /judy-2.2.0/PERFORMANCE_OPTIMIZATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/PERFORMANCE_OPTIMIZATION_PLAN.md -------------------------------------------------------------------------------- /judy-2.2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/README.md -------------------------------------------------------------------------------- /judy-2.2.0/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/composer.json -------------------------------------------------------------------------------- /judy-2.2.0/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/config.m4 -------------------------------------------------------------------------------- /judy-2.2.0/config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/config.w32 -------------------------------------------------------------------------------- /judy-2.2.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/configure.ac -------------------------------------------------------------------------------- /judy-2.2.0/examples/benchmark_ordered_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/examples/benchmark_ordered_data.php -------------------------------------------------------------------------------- /judy-2.2.0/examples/benchmark_ordered_data_demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/examples/benchmark_ordered_data_demo.php -------------------------------------------------------------------------------- /judy-2.2.0/examples/benchmark_range_queries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/examples/benchmark_range_queries.php -------------------------------------------------------------------------------- /judy-2.2.0/examples/benchmark_real_world_patterns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/examples/benchmark_real_world_patterns.php -------------------------------------------------------------------------------- /judy-2.2.0/examples/debug_iterator_performance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/examples/debug_iterator_performance.php -------------------------------------------------------------------------------- /judy-2.2.0/examples/iterator-vs-sequential-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/examples/iterator-vs-sequential-test.php -------------------------------------------------------------------------------- /judy-2.2.0/examples/iterator_performance_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/examples/iterator_performance_analysis.md -------------------------------------------------------------------------------- /judy-2.2.0/examples/judy-bench-bitset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/examples/judy-bench-bitset.php -------------------------------------------------------------------------------- /judy-2.2.0/examples/judy-bench-int_to_int.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/examples/judy-bench-int_to_int.php -------------------------------------------------------------------------------- /judy-2.2.0/examples/judy-bench-realistic-judy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/examples/judy-bench-realistic-judy.php -------------------------------------------------------------------------------- /judy-2.2.0/examples/judy-bench-realistic-php-array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/examples/judy-bench-realistic-php-array.php -------------------------------------------------------------------------------- /judy-2.2.0/examples/judy-bench-string_to_int.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/examples/judy-bench-string_to_int.php -------------------------------------------------------------------------------- /judy-2.2.0/examples/judy-read-performance-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/examples/judy-read-performance-test.php -------------------------------------------------------------------------------- /judy-2.2.0/examples/judy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/examples/judy.php -------------------------------------------------------------------------------- /judy-2.2.0/examples/run-benchmarks-robust.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/examples/run-benchmarks-robust.php -------------------------------------------------------------------------------- /judy-2.2.0/examples/run-benchmarks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/examples/run-benchmarks.php -------------------------------------------------------------------------------- /judy-2.2.0/examples/run_comprehensive_benchmarks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/examples/run_comprehensive_benchmarks.php -------------------------------------------------------------------------------- /judy-2.2.0/judy_arrayaccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/judy_arrayaccess.c -------------------------------------------------------------------------------- /judy-2.2.0/judy_arrayaccess.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/judy_arrayaccess.dep -------------------------------------------------------------------------------- /judy-2.2.0/judy_arrayaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/judy_arrayaccess.h -------------------------------------------------------------------------------- /judy-2.2.0/judy_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/judy_handlers.c -------------------------------------------------------------------------------- /judy-2.2.0/judy_handlers.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/judy_handlers.dep -------------------------------------------------------------------------------- /judy-2.2.0/judy_handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/judy_handlers.h -------------------------------------------------------------------------------- /judy-2.2.0/judy_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/judy_iterator.c -------------------------------------------------------------------------------- /judy-2.2.0/judy_iterator.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/judy_iterator.dep -------------------------------------------------------------------------------- /judy-2.2.0/judy_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/judy_iterator.h -------------------------------------------------------------------------------- /judy-2.2.0/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/package.xml -------------------------------------------------------------------------------- /judy-2.2.0/php_judy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/php_judy.c -------------------------------------------------------------------------------- /judy-2.2.0/php_judy.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/php_judy.dep -------------------------------------------------------------------------------- /judy-2.2.0/php_judy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/php_judy.h -------------------------------------------------------------------------------- /judy-2.2.0/tests/001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/bitset_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/bitset_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/bitset_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/bitset_002.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/bitset_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/bitset_003.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/bitset_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/bitset_004.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/bitset_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/bitset_005.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/bitset_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/bitset_006.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/bitset_007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/bitset_007.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/count_method_loop_int_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/count_method_loop_int_to_int_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/count_method_loop_string_to_mixed_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/count_method_loop_string_to_mixed_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/foreach_iterator_int_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/foreach_iterator_int_to_int_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/foreach_iterator_int_to_mixed_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/foreach_iterator_int_to_mixed_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/foreach_negative_indices_int_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/foreach_negative_indices_int_to_int_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/foreach_with_vardump_int_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/foreach_with_vardump_int_to_int_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/int_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/int_to_int_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/int_to_int_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/int_to_int_002.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/int_to_int_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/int_to_int_003.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/int_to_int_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/int_to_int_004.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/int_to_int_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/int_to_int_005.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/int_to_int_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/int_to_int_006.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/int_to_int_007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/int_to_int_007.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/int_to_int_008.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/int_to_int_008.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/int_to_mixed_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/int_to_mixed_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/int_to_mixed_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/int_to_mixed_002.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/int_to_mixed_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/int_to_mixed_003.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/int_to_mixed_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/int_to_mixed_004.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/int_to_mixed_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/int_to_mixed_005.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/int_to_mixed_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/int_to_mixed_006.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/int_to_mixed_007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/int_to_mixed_007.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/iterator_interface_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/iterator_interface_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/iterator_methods_individual_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/iterator_methods_individual_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/iterator_methods_simple_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/iterator_methods_simple_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/iterator_next_bug_fix_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/iterator_next_bug_fix_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/iterator_next_invalid_behavior_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/iterator_next_invalid_behavior_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/iterator_rewind_bug_fix_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/iterator_rewind_bug_fix_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/iterator_rewind_empty_bitset_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/iterator_rewind_empty_bitset_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/iterator_segfault_fix_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/iterator_segfault_fix_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/iterator_valid_performance_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/iterator_valid_performance_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/judy_error.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/judy_error.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/judy_foreach_bitset.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/judy_foreach_bitset.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/judy_foreach_int_to_int.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/judy_foreach_int_to_int.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/judy_foreach_int_to_mixed.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/judy_foreach_int_to_mixed.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/judy_foreach_string_to_int.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/judy_foreach_string_to_int.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/judy_foreach_string_to_mixed.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/judy_foreach_string_to_mixed.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/judy_type.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/judy_type.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/multiple_instances_count_int_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/multiple_instances_count_int_to_int_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/multiple_instances_count_string_to_mixed_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/multiple_instances_count_string_to_mixed_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/string_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/string_to_int_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/string_to_int_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/string_to_int_002.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/string_to_int_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/string_to_int_003.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/string_to_int_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/string_to_int_004.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/string_to_int_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/string_to_int_005.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/string_to_mixed_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/string_to_mixed_001.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/string_to_mixed_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/string_to_mixed_002.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/string_to_mixed_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/string_to_mixed_003.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/string_to_mixed_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/string_to_mixed_004.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/string_to_mixed_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/string_to_mixed_005.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/strings_as_keys.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/strings_as_keys.phpt -------------------------------------------------------------------------------- /judy-2.2.0/tests/strings_as_values.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy-2.2.0/tests/strings_as_values.phpt -------------------------------------------------------------------------------- /judy_arrayaccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy_arrayaccess.c -------------------------------------------------------------------------------- /judy_arrayaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy_arrayaccess.h -------------------------------------------------------------------------------- /judy_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy_handlers.c -------------------------------------------------------------------------------- /judy_handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy_handlers.h -------------------------------------------------------------------------------- /judy_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy_iterator.c -------------------------------------------------------------------------------- /judy_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/judy_iterator.h -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/package.xml -------------------------------------------------------------------------------- /php_judy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/php_judy.c -------------------------------------------------------------------------------- /php_judy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/php_judy.h -------------------------------------------------------------------------------- /test-package/judy-2.2.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/.gitignore -------------------------------------------------------------------------------- /test-package/judy-2.2.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/.travis.yml -------------------------------------------------------------------------------- /test-package/judy-2.2.0/CREDITS: -------------------------------------------------------------------------------- 1 | judy 2 | Nicolas Brousse 3 | -------------------------------------------------------------------------------- /test-package/judy-2.2.0/EXPERIMENTAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/EXPERIMENTAL -------------------------------------------------------------------------------- /test-package/judy-2.2.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/LICENSE -------------------------------------------------------------------------------- /test-package/judy-2.2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/README.md -------------------------------------------------------------------------------- /test-package/judy-2.2.0/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/composer.json -------------------------------------------------------------------------------- /test-package/judy-2.2.0/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/config.m4 -------------------------------------------------------------------------------- /test-package/judy-2.2.0/config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/config.w32 -------------------------------------------------------------------------------- /test-package/judy-2.2.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/configure.ac -------------------------------------------------------------------------------- /test-package/judy-2.2.0/examples/iterator-vs-sequential-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/examples/iterator-vs-sequential-test.php -------------------------------------------------------------------------------- /test-package/judy-2.2.0/examples/judy-bench-bitset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/examples/judy-bench-bitset.php -------------------------------------------------------------------------------- /test-package/judy-2.2.0/examples/judy-bench-int_to_int.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/examples/judy-bench-int_to_int.php -------------------------------------------------------------------------------- /test-package/judy-2.2.0/examples/judy-bench-realistic-judy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/examples/judy-bench-realistic-judy.php -------------------------------------------------------------------------------- /test-package/judy-2.2.0/examples/judy-bench-realistic-php-array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/examples/judy-bench-realistic-php-array.php -------------------------------------------------------------------------------- /test-package/judy-2.2.0/examples/judy-bench-string_to_int.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/examples/judy-bench-string_to_int.php -------------------------------------------------------------------------------- /test-package/judy-2.2.0/examples/judy-read-performance-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/examples/judy-read-performance-test.php -------------------------------------------------------------------------------- /test-package/judy-2.2.0/examples/judy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/examples/judy.php -------------------------------------------------------------------------------- /test-package/judy-2.2.0/examples/run-benchmarks-robust.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/examples/run-benchmarks-robust.php -------------------------------------------------------------------------------- /test-package/judy-2.2.0/examples/run-benchmarks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/examples/run-benchmarks.php -------------------------------------------------------------------------------- /test-package/judy-2.2.0/judy_arrayaccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/judy_arrayaccess.c -------------------------------------------------------------------------------- /test-package/judy-2.2.0/judy_arrayaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/judy_arrayaccess.h -------------------------------------------------------------------------------- /test-package/judy-2.2.0/judy_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/judy_handlers.c -------------------------------------------------------------------------------- /test-package/judy-2.2.0/judy_handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/judy_handlers.h -------------------------------------------------------------------------------- /test-package/judy-2.2.0/judy_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/judy_iterator.c -------------------------------------------------------------------------------- /test-package/judy-2.2.0/judy_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/judy_iterator.h -------------------------------------------------------------------------------- /test-package/judy-2.2.0/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/package.xml -------------------------------------------------------------------------------- /test-package/judy-2.2.0/php_judy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/php_judy.c -------------------------------------------------------------------------------- /test-package/judy-2.2.0/php_judy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/php_judy.h -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/bitset_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/bitset_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/bitset_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/bitset_002.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/bitset_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/bitset_003.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/bitset_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/bitset_004.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/bitset_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/bitset_005.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/bitset_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/bitset_006.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/bitset_007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/bitset_007.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/count_method_loop_int_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/count_method_loop_int_to_int_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/count_method_loop_string_to_mixed_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/count_method_loop_string_to_mixed_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/foreach_iterator_int_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/foreach_iterator_int_to_int_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/foreach_iterator_int_to_mixed_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/foreach_iterator_int_to_mixed_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/foreach_negative_indices_int_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/foreach_negative_indices_int_to_int_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/foreach_with_vardump_int_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/foreach_with_vardump_int_to_int_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/int_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/int_to_int_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/int_to_int_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/int_to_int_002.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/int_to_int_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/int_to_int_003.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/int_to_int_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/int_to_int_004.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/int_to_int_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/int_to_int_005.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/int_to_int_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/int_to_int_006.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/int_to_int_007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/int_to_int_007.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/int_to_int_008.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/int_to_int_008.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/int_to_mixed_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/int_to_mixed_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/int_to_mixed_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/int_to_mixed_002.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/int_to_mixed_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/int_to_mixed_003.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/int_to_mixed_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/int_to_mixed_004.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/int_to_mixed_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/int_to_mixed_005.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/int_to_mixed_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/int_to_mixed_006.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/int_to_mixed_007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/int_to_mixed_007.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/iterator_interface_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/iterator_interface_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/iterator_methods_individual_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/iterator_methods_individual_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/iterator_methods_simple_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/iterator_methods_simple_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/iterator_next_bug_fix_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/iterator_next_bug_fix_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/iterator_rewind_bug_fix_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/iterator_rewind_bug_fix_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/iterator_segfault_fix_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/iterator_segfault_fix_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/judy_error.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/judy_error.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/judy_foreach_bitset.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/judy_foreach_bitset.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/judy_foreach_int_to_int.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/judy_foreach_int_to_int.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/judy_foreach_int_to_mixed.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/judy_foreach_int_to_mixed.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/judy_foreach_string_to_int.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/judy_foreach_string_to_int.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/judy_foreach_string_to_mixed.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/judy_foreach_string_to_mixed.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/judy_type.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/judy_type.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/multiple_instances_count_int_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/multiple_instances_count_int_to_int_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/multiple_instances_count_string_to_mixed_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/multiple_instances_count_string_to_mixed_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/string_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/string_to_int_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/string_to_int_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/string_to_int_002.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/string_to_int_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/string_to_int_003.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/string_to_int_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/string_to_int_004.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/string_to_int_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/string_to_int_005.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/string_to_mixed_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/string_to_mixed_001.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/string_to_mixed_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/string_to_mixed_002.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/string_to_mixed_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/string_to_mixed_003.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/string_to_mixed_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/string_to_mixed_004.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/string_to_mixed_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/string_to_mixed_005.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/strings_as_keys.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/strings_as_keys.phpt -------------------------------------------------------------------------------- /test-package/judy-2.2.0/tests/strings_as_values.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/test-package/judy-2.2.0/tests/strings_as_values.phpt -------------------------------------------------------------------------------- /tests/001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/001.phpt -------------------------------------------------------------------------------- /tests/bitset_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/bitset_001.phpt -------------------------------------------------------------------------------- /tests/bitset_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/bitset_002.phpt -------------------------------------------------------------------------------- /tests/bitset_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/bitset_003.phpt -------------------------------------------------------------------------------- /tests/bitset_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/bitset_004.phpt -------------------------------------------------------------------------------- /tests/bitset_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/bitset_005.phpt -------------------------------------------------------------------------------- /tests/bitset_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/bitset_006.phpt -------------------------------------------------------------------------------- /tests/bitset_007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/bitset_007.phpt -------------------------------------------------------------------------------- /tests/count_method_loop_int_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/count_method_loop_int_to_int_001.phpt -------------------------------------------------------------------------------- /tests/count_method_loop_string_to_mixed_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/count_method_loop_string_to_mixed_001.phpt -------------------------------------------------------------------------------- /tests/foreach_iterator_int_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/foreach_iterator_int_to_int_001.phpt -------------------------------------------------------------------------------- /tests/foreach_iterator_int_to_mixed_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/foreach_iterator_int_to_mixed_001.phpt -------------------------------------------------------------------------------- /tests/foreach_negative_indices_int_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/foreach_negative_indices_int_to_int_001.phpt -------------------------------------------------------------------------------- /tests/foreach_with_vardump_int_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/foreach_with_vardump_int_to_int_001.phpt -------------------------------------------------------------------------------- /tests/int_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/int_to_int_001.phpt -------------------------------------------------------------------------------- /tests/int_to_int_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/int_to_int_002.phpt -------------------------------------------------------------------------------- /tests/int_to_int_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/int_to_int_003.phpt -------------------------------------------------------------------------------- /tests/int_to_int_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/int_to_int_004.phpt -------------------------------------------------------------------------------- /tests/int_to_int_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/int_to_int_005.phpt -------------------------------------------------------------------------------- /tests/int_to_int_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/int_to_int_006.phpt -------------------------------------------------------------------------------- /tests/int_to_int_007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/int_to_int_007.phpt -------------------------------------------------------------------------------- /tests/int_to_int_008.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/int_to_int_008.phpt -------------------------------------------------------------------------------- /tests/int_to_mixed_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/int_to_mixed_001.phpt -------------------------------------------------------------------------------- /tests/int_to_mixed_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/int_to_mixed_002.phpt -------------------------------------------------------------------------------- /tests/int_to_mixed_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/int_to_mixed_003.phpt -------------------------------------------------------------------------------- /tests/int_to_mixed_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/int_to_mixed_004.phpt -------------------------------------------------------------------------------- /tests/int_to_mixed_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/int_to_mixed_005.phpt -------------------------------------------------------------------------------- /tests/int_to_mixed_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/int_to_mixed_006.phpt -------------------------------------------------------------------------------- /tests/int_to_mixed_007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/int_to_mixed_007.phpt -------------------------------------------------------------------------------- /tests/iterator_interface_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/iterator_interface_001.phpt -------------------------------------------------------------------------------- /tests/iterator_methods_individual_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/iterator_methods_individual_001.phpt -------------------------------------------------------------------------------- /tests/iterator_methods_simple_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/iterator_methods_simple_001.phpt -------------------------------------------------------------------------------- /tests/iterator_next_bug_fix_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/iterator_next_bug_fix_001.phpt -------------------------------------------------------------------------------- /tests/iterator_next_invalid_behavior_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/iterator_next_invalid_behavior_001.phpt -------------------------------------------------------------------------------- /tests/iterator_rewind_bug_fix_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/iterator_rewind_bug_fix_001.phpt -------------------------------------------------------------------------------- /tests/iterator_rewind_empty_bitset_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/iterator_rewind_empty_bitset_001.phpt -------------------------------------------------------------------------------- /tests/iterator_segfault_fix_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/iterator_segfault_fix_001.phpt -------------------------------------------------------------------------------- /tests/iterator_valid_performance_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/iterator_valid_performance_001.phpt -------------------------------------------------------------------------------- /tests/judy_error.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/judy_error.phpt -------------------------------------------------------------------------------- /tests/judy_foreach_bitset.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/judy_foreach_bitset.phpt -------------------------------------------------------------------------------- /tests/judy_foreach_int_to_int.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/judy_foreach_int_to_int.phpt -------------------------------------------------------------------------------- /tests/judy_foreach_int_to_mixed.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/judy_foreach_int_to_mixed.phpt -------------------------------------------------------------------------------- /tests/judy_foreach_string_to_int.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/judy_foreach_string_to_int.phpt -------------------------------------------------------------------------------- /tests/judy_foreach_string_to_mixed.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/judy_foreach_string_to_mixed.phpt -------------------------------------------------------------------------------- /tests/judy_type.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/judy_type.phpt -------------------------------------------------------------------------------- /tests/multiple_instances_count_int_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/multiple_instances_count_int_to_int_001.phpt -------------------------------------------------------------------------------- /tests/multiple_instances_count_string_to_mixed_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/multiple_instances_count_string_to_mixed_001.phpt -------------------------------------------------------------------------------- /tests/string_to_int_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/string_to_int_001.phpt -------------------------------------------------------------------------------- /tests/string_to_int_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/string_to_int_002.phpt -------------------------------------------------------------------------------- /tests/string_to_int_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/string_to_int_003.phpt -------------------------------------------------------------------------------- /tests/string_to_int_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/string_to_int_004.phpt -------------------------------------------------------------------------------- /tests/string_to_int_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/string_to_int_005.phpt -------------------------------------------------------------------------------- /tests/string_to_mixed_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/string_to_mixed_001.phpt -------------------------------------------------------------------------------- /tests/string_to_mixed_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/string_to_mixed_002.phpt -------------------------------------------------------------------------------- /tests/string_to_mixed_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/string_to_mixed_003.phpt -------------------------------------------------------------------------------- /tests/string_to_mixed_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/string_to_mixed_004.phpt -------------------------------------------------------------------------------- /tests/string_to_mixed_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/string_to_mixed_005.phpt -------------------------------------------------------------------------------- /tests/strings_as_keys.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/strings_as_keys.phpt -------------------------------------------------------------------------------- /tests/strings_as_values.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orieg/php-judy/HEAD/tests/strings_as_values.phpt --------------------------------------------------------------------------------