├── .gitignore ├── Cargo.toml ├── LICENSE.txt ├── README.md ├── benches └── main.rs ├── docs ├── benchmarks │ ├── exists │ │ ├── 10 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 20 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 30 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 40 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 50 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 60 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 70 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 80 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 90 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 100 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 110 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── Path.join │ │ │ ├── 10 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 20 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 30 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 40 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 50 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 60 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 70 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 80 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 90 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── change │ │ │ │ │ └── estimates.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── both │ │ │ │ │ ├── pdf.svg │ │ │ │ │ └── regression.svg │ │ │ │ │ ├── change │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ └── t-test.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── relative_pdf_small.svg │ │ │ │ │ ├── relative_regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 100 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── change │ │ │ │ │ └── estimates.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── both │ │ │ │ │ ├── pdf.svg │ │ │ │ │ └── regression.svg │ │ │ │ │ ├── change │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ └── t-test.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── relative_pdf_small.svg │ │ │ │ │ ├── relative_regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 110 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ ├── lines.svg │ │ │ │ └── violin.svg │ │ ├── report │ │ │ ├── index.html │ │ │ ├── lines.svg │ │ │ └── violin.svg │ │ └── with_paths! │ │ │ ├── 10 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 20 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 30 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 40 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 50 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 60 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 70 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 80 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 90 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── change │ │ │ │ └── estimates.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── both │ │ │ │ ├── pdf.svg │ │ │ │ └── regression.svg │ │ │ │ ├── change │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ └── t-test.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── relative_pdf_small.svg │ │ │ │ ├── relative_regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 100 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── change │ │ │ │ └── estimates.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── both │ │ │ │ ├── pdf.svg │ │ │ │ └── regression.svg │ │ │ │ ├── change │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ └── t-test.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── relative_pdf_small.svg │ │ │ │ ├── relative_regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 110 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ └── report │ │ │ ├── index.html │ │ │ ├── lines.svg │ │ │ └── violin.svg │ ├── join │ │ ├── 10 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 20 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 30 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 40 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 50 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 60 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 70 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 80 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 90 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 100 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── 110 │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ └── violin.svg │ │ ├── Path.join │ │ │ ├── 10 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── change │ │ │ │ │ └── estimates.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── both │ │ │ │ │ ├── pdf.svg │ │ │ │ │ └── regression.svg │ │ │ │ │ ├── change │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ └── t-test.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── relative_pdf_small.svg │ │ │ │ │ ├── relative_regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 20 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 30 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 40 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 50 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 60 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 70 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 80 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 90 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── change │ │ │ │ │ └── estimates.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── both │ │ │ │ │ ├── pdf.svg │ │ │ │ │ └── regression.svg │ │ │ │ │ ├── change │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ └── t-test.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── relative_pdf_small.svg │ │ │ │ │ ├── relative_regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 100 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── change │ │ │ │ │ └── estimates.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── both │ │ │ │ │ ├── pdf.svg │ │ │ │ │ └── regression.svg │ │ │ │ │ ├── change │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ └── t-test.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── relative_pdf_small.svg │ │ │ │ │ ├── relative_regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ ├── 110 │ │ │ │ ├── base │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ ├── new │ │ │ │ │ ├── benchmark.json │ │ │ │ │ ├── estimates.json │ │ │ │ │ ├── raw.csv │ │ │ │ │ ├── sample.json │ │ │ │ │ └── tukey.json │ │ │ │ └── report │ │ │ │ │ ├── MAD.svg │ │ │ │ │ ├── SD.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mean.svg │ │ │ │ │ ├── median.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── pdf_small.svg │ │ │ │ │ ├── regression.svg │ │ │ │ │ ├── regression_small.svg │ │ │ │ │ ├── slope.svg │ │ │ │ │ └── typical.svg │ │ │ └── report │ │ │ │ ├── index.html │ │ │ │ ├── lines.svg │ │ │ │ └── violin.svg │ │ ├── report │ │ │ ├── index.html │ │ │ ├── lines.svg │ │ │ └── violin.svg │ │ └── with_paths! │ │ │ ├── 10 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── change │ │ │ │ └── estimates.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── both │ │ │ │ ├── pdf.svg │ │ │ │ └── regression.svg │ │ │ │ ├── change │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ └── t-test.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── relative_pdf_small.svg │ │ │ │ ├── relative_regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 20 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── change │ │ │ │ └── estimates.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── both │ │ │ │ ├── pdf.svg │ │ │ │ └── regression.svg │ │ │ │ ├── change │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ └── t-test.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── relative_pdf_small.svg │ │ │ │ ├── relative_regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 30 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 40 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 50 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 60 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 70 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 80 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 90 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── change │ │ │ │ └── estimates.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── both │ │ │ │ ├── pdf.svg │ │ │ │ └── regression.svg │ │ │ │ ├── change │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ └── t-test.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── relative_pdf_small.svg │ │ │ │ ├── relative_regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 100 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── change │ │ │ │ └── estimates.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── both │ │ │ │ ├── pdf.svg │ │ │ │ └── regression.svg │ │ │ │ ├── change │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ └── t-test.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── relative_pdf_small.svg │ │ │ │ ├── relative_regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ ├── 110 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ │ └── report │ │ │ ├── index.html │ │ │ ├── lines.svg │ │ │ └── violin.svg │ └── report │ │ └── index.html └── with_paths.md ├── examples └── check_exists.rs └── src ├── lib.rs └── tests.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | authors = ["Alecto Irene Perez "] 3 | description = "Provides with_paths! macro, for joining paths ergonomically and without allocation." 4 | documentation = "https://docs.rs/path_no_alloc/" 5 | edition = "2021" 6 | homepage = "https://github.com/codeinred/path_no_alloc" 7 | keywords = ["path", "paths", "filesystem", "fs"] 8 | license = "MIT" 9 | name = "path_no_alloc" 10 | readme = "README.md" 11 | version = "0.1.2" 12 | 13 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 14 | 15 | [dependencies] 16 | 17 | [dev-dependencies] 18 | criterion = {version = "0.3", features = ["html_reports"]} 19 | rand = "0.8.4" 20 | 21 | [[bench]] 22 | harness = false 23 | name = "main" 24 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2022 Alecto Irene Perez 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of 4 | this software and associated documentation files (the "Software"), to deal in 5 | the Software without restriction, including without limitation the rights to 6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 7 | the Software, and to permit persons to whom the Software is furnished to do so, 8 | subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 15 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 16 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 17 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 18 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 19 | -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/10/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"10","throughput":null,"full_id":"exists/Path.join/10","directory_name":"exists/Path.join/10","title":"exists/Path.join/10"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/10/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":319.3308381988461,"upper_bound":321.62968711245463},"point_estimate":320.4073366544246,"standard_error":0.5867954550421874},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":317.9835469255663,"upper_bound":319.5730378215815},"point_estimate":318.6949652196555,"standard_error":0.42417588831886704},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.2566216983258434,"upper_bound":3.8915010336673097},"point_estimate":2.805750831549243,"standard_error":0.4282560376725955},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":319.0883112297631,"upper_bound":320.64392419353703},"point_estimate":319.8438006698221,"standard_error":0.3966580013788131},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4.0337674710089555,"upper_bound":7.51716821422027},"point_estimate":5.906888323889671,"standard_error":0.8922144548253477}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/10/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[3090.0,6180.0,9270.0,12360.0,15450.0,18540.0,21630.0,24720.0,27810.0,30900.0,33990.0,37080.0,40170.0,43260.0,46350.0,49440.0,52530.0,55620.0,58710.0,61800.0,64890.0,67980.0,71070.0,74160.0,77250.0,80340.0,83430.0,86520.0,89610.0,92700.0,95790.0,98880.0,101970.0,105060.0,108150.0,111240.0,114330.0,117420.0,120510.0,123600.0,126690.0,129780.0,132870.0,135960.0,139050.0,142140.0,145230.0,148320.0,151410.0,154500.0,157590.0,160680.0,163770.0,166860.0,169950.0,173040.0,176130.0,179220.0,182310.0,185400.0,188490.0,191580.0,194670.0,197760.0,200850.0,203940.0,207030.0,210120.0,213210.0,216300.0,219390.0,222480.0,225570.0,228660.0,231750.0,234840.0,237930.0,241020.0,244110.0,247200.0,250290.0,253380.0,256470.0,259560.0,262650.0,265740.0,268830.0,271920.0,275010.0,278100.0,281190.0,284280.0,287370.0,290460.0,293550.0,296640.0,299730.0,302820.0,305910.0,309000.0],"times":[1000904.0,1982247.0,2970893.0,3868052.0,4917213.0,6282669.0,7365267.0,8605543.0,9501817.0,10410247.0,11255539.0,12234689.0,13109243.0,13837797.0,14869834.0,15667261.0,16530773.0,17620666.0,18562370.0,19501085.0,20494089.0,21447232.0,22478306.0,23450020.0,24564229.0,25543713.0,26711176.0,27634275.0,28553880.0,29526283.0,30580549.0,31416358.0,32236148.0,33387730.0,34186050.0,35166633.0,36223284.0,37066903.0,38085411.0,39110338.0,40201583.0,41366570.0,43161339.0,44531927.0,44725026.0,45377024.0,46400461.0,46977951.0,48181115.0,48951567.0,49977702.0,51119331.0,52032595.0,52873161.0,53840250.0,54709240.0,57077662.0,57564728.0,57734927.0,58774890.0,60041962.0,61798349.0,63803264.0,63208247.0,63748200.0,64825384.0,66310084.0,67288501.0,68895418.0,68507735.0,69819069.0,70511778.0,71352609.0,72203668.0,73796111.0,75555910.0,77608869.0,76938134.0,77360171.0,78538257.0,79693020.0,81199317.0,82183220.0,83247699.0,83880982.0,85348012.0,86051616.0,86711369.0,89281230.0,89511937.0,89647563.0,90078888.0,90960436.0,92979604.0,94798102.0,95926123.0,95814389.0,96921465.0,97760588.0,101190163.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/10/base/tukey.json: -------------------------------------------------------------------------------- 1 | [304.72402114521867,310.791880454416,326.97283861227555,333.0406979214729] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/10/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"10","throughput":null,"full_id":"exists/Path.join/10","directory_name":"exists/Path.join/10","title":"exists/Path.join/10"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/10/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":319.3308381988461,"upper_bound":321.62968711245463},"point_estimate":320.4073366544246,"standard_error":0.5867954550421874},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":317.9835469255663,"upper_bound":319.5730378215815},"point_estimate":318.6949652196555,"standard_error":0.42417588831886704},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.2566216983258434,"upper_bound":3.8915010336673097},"point_estimate":2.805750831549243,"standard_error":0.4282560376725955},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":319.0883112297631,"upper_bound":320.64392419353703},"point_estimate":319.8438006698221,"standard_error":0.3966580013788131},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4.0337674710089555,"upper_bound":7.51716821422027},"point_estimate":5.906888323889671,"standard_error":0.8922144548253477}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/10/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[3090.0,6180.0,9270.0,12360.0,15450.0,18540.0,21630.0,24720.0,27810.0,30900.0,33990.0,37080.0,40170.0,43260.0,46350.0,49440.0,52530.0,55620.0,58710.0,61800.0,64890.0,67980.0,71070.0,74160.0,77250.0,80340.0,83430.0,86520.0,89610.0,92700.0,95790.0,98880.0,101970.0,105060.0,108150.0,111240.0,114330.0,117420.0,120510.0,123600.0,126690.0,129780.0,132870.0,135960.0,139050.0,142140.0,145230.0,148320.0,151410.0,154500.0,157590.0,160680.0,163770.0,166860.0,169950.0,173040.0,176130.0,179220.0,182310.0,185400.0,188490.0,191580.0,194670.0,197760.0,200850.0,203940.0,207030.0,210120.0,213210.0,216300.0,219390.0,222480.0,225570.0,228660.0,231750.0,234840.0,237930.0,241020.0,244110.0,247200.0,250290.0,253380.0,256470.0,259560.0,262650.0,265740.0,268830.0,271920.0,275010.0,278100.0,281190.0,284280.0,287370.0,290460.0,293550.0,296640.0,299730.0,302820.0,305910.0,309000.0],"times":[1000904.0,1982247.0,2970893.0,3868052.0,4917213.0,6282669.0,7365267.0,8605543.0,9501817.0,10410247.0,11255539.0,12234689.0,13109243.0,13837797.0,14869834.0,15667261.0,16530773.0,17620666.0,18562370.0,19501085.0,20494089.0,21447232.0,22478306.0,23450020.0,24564229.0,25543713.0,26711176.0,27634275.0,28553880.0,29526283.0,30580549.0,31416358.0,32236148.0,33387730.0,34186050.0,35166633.0,36223284.0,37066903.0,38085411.0,39110338.0,40201583.0,41366570.0,43161339.0,44531927.0,44725026.0,45377024.0,46400461.0,46977951.0,48181115.0,48951567.0,49977702.0,51119331.0,52032595.0,52873161.0,53840250.0,54709240.0,57077662.0,57564728.0,57734927.0,58774890.0,60041962.0,61798349.0,63803264.0,63208247.0,63748200.0,64825384.0,66310084.0,67288501.0,68895418.0,68507735.0,69819069.0,70511778.0,71352609.0,72203668.0,73796111.0,75555910.0,77608869.0,76938134.0,77360171.0,78538257.0,79693020.0,81199317.0,82183220.0,83247699.0,83880982.0,85348012.0,86051616.0,86711369.0,89281230.0,89511937.0,89647563.0,90078888.0,90960436.0,92979604.0,94798102.0,95926123.0,95814389.0,96921465.0,97760588.0,101190163.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/10/new/tukey.json: -------------------------------------------------------------------------------- 1 | [304.72402114521867,310.791880454416,326.97283861227555,333.0406979214729] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/100/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"100","throughput":null,"full_id":"exists/Path.join/100","directory_name":"exists/Path.join/100","title":"exists/Path.join/100"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/100/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":426.37024204483134,"upper_bound":430.52747009895705},"point_estimate":428.23132854705295,"standard_error":1.0640452796285005},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":424.3537268418785,"upper_bound":426.17023515272456},"point_estimate":425.05776918667914,"standard_error":0.47225792398497046},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.492636100631241,"upper_bound":6.530309978015003},"point_estimate":4.5497314783519105,"standard_error":0.807326478318812},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":425.23208519433524,"upper_bound":428.4295659630745},"point_estimate":426.7636356059741,"standard_error":0.8173565426989091},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.185823345324147,"upper_bound":15.54396163692438},"point_estimate":10.724954744374488,"standard_error":2.737452407145841}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/100/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2321.0,4642.0,6963.0,9284.0,11605.0,13926.0,16247.0,18568.0,20889.0,23210.0,25531.0,27852.0,30173.0,32494.0,34815.0,37136.0,39457.0,41778.0,44099.0,46420.0,48741.0,51062.0,53383.0,55704.0,58025.0,60346.0,62667.0,64988.0,67309.0,69630.0,71951.0,74272.0,76593.0,78914.0,81235.0,83556.0,85877.0,88198.0,90519.0,92840.0,95161.0,97482.0,99803.0,102124.0,104445.0,106766.0,109087.0,111408.0,113729.0,116050.0,118371.0,120692.0,123013.0,125334.0,127655.0,129976.0,132297.0,134618.0,136939.0,139260.0,141581.0,143902.0,146223.0,148544.0,150865.0,153186.0,155507.0,157828.0,160149.0,162470.0,164791.0,167112.0,169433.0,171754.0,174075.0,176396.0,178717.0,181038.0,183359.0,185680.0,188001.0,190322.0,192643.0,194964.0,197285.0,199606.0,201927.0,204248.0,206569.0,208890.0,211211.0,213532.0,215853.0,218174.0,220495.0,222816.0,225137.0,227458.0,229779.0,232100.0],"times":[987155.0,1984385.0,2985237.0,3937290.0,4935707.0,5917999.0,7195387.0,8375500.0,9141531.0,10075457.0,11034064.0,12048219.0,13343430.0,13995335.0,14617960.0,15620091.0,16804278.0,17499767.0,18737523.0,20060607.0,20838138.0,21663652.0,22564968.0,23269570.0,24545881.0,27080754.0,27615362.0,32846785.0,30605612.0,30811964.0,30779479.0,31329254.0,32095240.0,33141767.0,34580027.0,35309726.0,36499045.0,37838552.0,38412075.0,39653687.0,40862217.0,41225556.0,42003050.0,42805565.0,44399587.0,45282251.0,46093733.0,46874990.0,48422936.0,49112930.0,50563633.0,53797858.0,53392442.0,54092916.0,54344050.0,54796773.0,55996246.0,56691918.0,57833941.0,59125553.0,60872433.0,61366140.0,62030636.0,63553432.0,63689199.0,64802991.0,66040592.0,67531049.0,70191460.0,70208921.0,70883291.0,70559254.0,71164480.0,71952033.0,73934040.0,75066037.0,75735247.0,77396653.0,77761002.0,78937694.0,79839691.0,82743442.0,83016697.0,82430196.0,83808153.0,84116328.0,84992430.0,90093925.0,88609597.0,88563131.0,88989801.0,90606975.0,91629623.0,94924357.0,93968406.0,93425689.0,94761442.0,96410433.0,99899617.0,101574750.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/100/base/tukey.json: -------------------------------------------------------------------------------- 1 | [400.24539940031707,411.50901683964383,441.5453300111819,452.80894745050864] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/100/change/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.06045101007346993,"upper_bound":-0.043069418068948824},"point_estimate":-0.05189756171941551,"standard_error":0.004430616142721438},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.05927648000053187,"upper_bound":-0.04200885911102037},"point_estimate":-0.048268947337423374,"standard_error":0.004403627410520005}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/100/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"100","throughput":null,"full_id":"exists/Path.join/100","directory_name":"exists/Path.join/100","title":"exists/Path.join/100"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/100/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":426.37024204483134,"upper_bound":430.52747009895705},"point_estimate":428.23132854705295,"standard_error":1.0640452796285005},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":424.3537268418785,"upper_bound":426.17023515272456},"point_estimate":425.05776918667914,"standard_error":0.47225792398497046},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.492636100631241,"upper_bound":6.530309978015003},"point_estimate":4.5497314783519105,"standard_error":0.807326478318812},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":425.23208519433524,"upper_bound":428.4295659630745},"point_estimate":426.7636356059741,"standard_error":0.8173565426989091},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.185823345324147,"upper_bound":15.54396163692438},"point_estimate":10.724954744374488,"standard_error":2.737452407145841}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/100/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2321.0,4642.0,6963.0,9284.0,11605.0,13926.0,16247.0,18568.0,20889.0,23210.0,25531.0,27852.0,30173.0,32494.0,34815.0,37136.0,39457.0,41778.0,44099.0,46420.0,48741.0,51062.0,53383.0,55704.0,58025.0,60346.0,62667.0,64988.0,67309.0,69630.0,71951.0,74272.0,76593.0,78914.0,81235.0,83556.0,85877.0,88198.0,90519.0,92840.0,95161.0,97482.0,99803.0,102124.0,104445.0,106766.0,109087.0,111408.0,113729.0,116050.0,118371.0,120692.0,123013.0,125334.0,127655.0,129976.0,132297.0,134618.0,136939.0,139260.0,141581.0,143902.0,146223.0,148544.0,150865.0,153186.0,155507.0,157828.0,160149.0,162470.0,164791.0,167112.0,169433.0,171754.0,174075.0,176396.0,178717.0,181038.0,183359.0,185680.0,188001.0,190322.0,192643.0,194964.0,197285.0,199606.0,201927.0,204248.0,206569.0,208890.0,211211.0,213532.0,215853.0,218174.0,220495.0,222816.0,225137.0,227458.0,229779.0,232100.0],"times":[987155.0,1984385.0,2985237.0,3937290.0,4935707.0,5917999.0,7195387.0,8375500.0,9141531.0,10075457.0,11034064.0,12048219.0,13343430.0,13995335.0,14617960.0,15620091.0,16804278.0,17499767.0,18737523.0,20060607.0,20838138.0,21663652.0,22564968.0,23269570.0,24545881.0,27080754.0,27615362.0,32846785.0,30605612.0,30811964.0,30779479.0,31329254.0,32095240.0,33141767.0,34580027.0,35309726.0,36499045.0,37838552.0,38412075.0,39653687.0,40862217.0,41225556.0,42003050.0,42805565.0,44399587.0,45282251.0,46093733.0,46874990.0,48422936.0,49112930.0,50563633.0,53797858.0,53392442.0,54092916.0,54344050.0,54796773.0,55996246.0,56691918.0,57833941.0,59125553.0,60872433.0,61366140.0,62030636.0,63553432.0,63689199.0,64802991.0,66040592.0,67531049.0,70191460.0,70208921.0,70883291.0,70559254.0,71164480.0,71952033.0,73934040.0,75066037.0,75735247.0,77396653.0,77761002.0,78937694.0,79839691.0,82743442.0,83016697.0,82430196.0,83808153.0,84116328.0,84992430.0,90093925.0,88609597.0,88563131.0,88989801.0,90606975.0,91629623.0,94924357.0,93968406.0,93425689.0,94761442.0,96410433.0,99899617.0,101574750.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/100/new/tukey.json: -------------------------------------------------------------------------------- 1 | [400.24539940031707,411.50901683964383,441.5453300111819,452.80894745050864] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/110/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"110","throughput":null,"full_id":"exists/Path.join/110","directory_name":"exists/Path.join/110","title":"exists/Path.join/110"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/110/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":457.08101558058894,"upper_bound":463.5621256259107},"point_estimate":460.2473416434854,"standard_error":1.6517467224492872},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":452.21251654574394,"upper_bound":458.27831368345835},"point_estimate":454.59470105815916,"standard_error":1.5516445004566477},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.48046596564417,"upper_bound":18.543623455280194},"point_estimate":11.826637842357645,"standard_error":2.9334223621428697},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":453.34097679428874,"upper_bound":463.3534904488834},"point_estimate":458.20013862159976,"standard_error":2.5470174652440907},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":14.340716944706555,"upper_bound":18.30503690748257},"point_estimate":16.554102414693393,"standard_error":1.0099287807779924}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/110/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2177.0,4354.0,6531.0,8708.0,10885.0,13062.0,15239.0,17416.0,19593.0,21770.0,23947.0,26124.0,28301.0,30478.0,32655.0,34832.0,37009.0,39186.0,41363.0,43540.0,45717.0,47894.0,50071.0,52248.0,54425.0,56602.0,58779.0,60956.0,63133.0,65310.0,67487.0,69664.0,71841.0,74018.0,76195.0,78372.0,80549.0,82726.0,84903.0,87080.0,89257.0,91434.0,93611.0,95788.0,97965.0,100142.0,102319.0,104496.0,106673.0,108850.0,111027.0,113204.0,115381.0,117558.0,119735.0,121912.0,124089.0,126266.0,128443.0,130620.0,132797.0,134974.0,137151.0,139328.0,141505.0,143682.0,145859.0,148036.0,150213.0,152390.0,154567.0,156744.0,158921.0,161098.0,163275.0,165452.0,167629.0,169806.0,171983.0,174160.0,176337.0,178514.0,180691.0,182868.0,185045.0,187222.0,189399.0,191576.0,193753.0,195930.0,198107.0,200284.0,202461.0,204638.0,206815.0,208992.0,211169.0,213346.0,215523.0,217700.0],"times":[1076074.0,2094799.0,3014491.0,4135492.0,5257504.0,6268562.0,7458562.0,8506950.0,9661344.0,10218207.0,11538949.0,12291794.0,13314157.0,13981848.0,14727237.0,15936644.0,17553436.0,17958094.0,18911937.0,19819672.0,20778580.0,21577351.0,22617217.0,23504237.0,24403229.0,25624154.0,26355743.0,27939350.0,28705625.0,29802384.0,30491418.0,31570884.0,33236769.0,34348189.0,34737443.0,35525931.0,36389242.0,37272990.0,38970783.0,39665100.0,40173798.0,41273401.0,42339523.0,43308902.0,44507976.0,45154260.0,46244627.0,47261054.0,47944785.0,48925374.0,49512037.0,49919883.0,51221646.0,52035031.0,54631810.0,56141420.0,56153739.0,55826216.0,57785156.0,63782014.0,64665641.0,65988026.0,67107194.0,68519192.0,69803187.0,69921265.0,68119653.0,66349416.0,66436433.0,70480353.0,72317017.0,72032270.0,72063888.0,71965073.0,74658788.0,73365201.0,75362348.0,75355934.0,75462160.0,76092385.0,77144852.0,78505167.0,79260232.0,83084862.0,88561823.0,93483416.0,93456749.0,93972226.0,90408868.0,90816016.0,94343367.0,97466489.0,95315110.0,91904411.0,92762001.0,94002587.0,92594734.0,93309442.0,94670399.0,96064013.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/110/base/tukey.json: -------------------------------------------------------------------------------- 1 | [386.81323137358737,418.18284769318876,501.8351578787925,533.2047741983938] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/110/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"110","throughput":null,"full_id":"exists/Path.join/110","directory_name":"exists/Path.join/110","title":"exists/Path.join/110"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/110/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":457.08101558058894,"upper_bound":463.5621256259107},"point_estimate":460.2473416434854,"standard_error":1.6517467224492872},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":452.21251654574394,"upper_bound":458.27831368345835},"point_estimate":454.59470105815916,"standard_error":1.5516445004566477},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.48046596564417,"upper_bound":18.543623455280194},"point_estimate":11.826637842357645,"standard_error":2.9334223621428697},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":453.34097679428874,"upper_bound":463.3534904488834},"point_estimate":458.20013862159976,"standard_error":2.5470174652440907},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":14.340716944706555,"upper_bound":18.30503690748257},"point_estimate":16.554102414693393,"standard_error":1.0099287807779924}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/110/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2177.0,4354.0,6531.0,8708.0,10885.0,13062.0,15239.0,17416.0,19593.0,21770.0,23947.0,26124.0,28301.0,30478.0,32655.0,34832.0,37009.0,39186.0,41363.0,43540.0,45717.0,47894.0,50071.0,52248.0,54425.0,56602.0,58779.0,60956.0,63133.0,65310.0,67487.0,69664.0,71841.0,74018.0,76195.0,78372.0,80549.0,82726.0,84903.0,87080.0,89257.0,91434.0,93611.0,95788.0,97965.0,100142.0,102319.0,104496.0,106673.0,108850.0,111027.0,113204.0,115381.0,117558.0,119735.0,121912.0,124089.0,126266.0,128443.0,130620.0,132797.0,134974.0,137151.0,139328.0,141505.0,143682.0,145859.0,148036.0,150213.0,152390.0,154567.0,156744.0,158921.0,161098.0,163275.0,165452.0,167629.0,169806.0,171983.0,174160.0,176337.0,178514.0,180691.0,182868.0,185045.0,187222.0,189399.0,191576.0,193753.0,195930.0,198107.0,200284.0,202461.0,204638.0,206815.0,208992.0,211169.0,213346.0,215523.0,217700.0],"times":[1076074.0,2094799.0,3014491.0,4135492.0,5257504.0,6268562.0,7458562.0,8506950.0,9661344.0,10218207.0,11538949.0,12291794.0,13314157.0,13981848.0,14727237.0,15936644.0,17553436.0,17958094.0,18911937.0,19819672.0,20778580.0,21577351.0,22617217.0,23504237.0,24403229.0,25624154.0,26355743.0,27939350.0,28705625.0,29802384.0,30491418.0,31570884.0,33236769.0,34348189.0,34737443.0,35525931.0,36389242.0,37272990.0,38970783.0,39665100.0,40173798.0,41273401.0,42339523.0,43308902.0,44507976.0,45154260.0,46244627.0,47261054.0,47944785.0,48925374.0,49512037.0,49919883.0,51221646.0,52035031.0,54631810.0,56141420.0,56153739.0,55826216.0,57785156.0,63782014.0,64665641.0,65988026.0,67107194.0,68519192.0,69803187.0,69921265.0,68119653.0,66349416.0,66436433.0,70480353.0,72317017.0,72032270.0,72063888.0,71965073.0,74658788.0,73365201.0,75362348.0,75355934.0,75462160.0,76092385.0,77144852.0,78505167.0,79260232.0,83084862.0,88561823.0,93483416.0,93456749.0,93972226.0,90408868.0,90816016.0,94343367.0,97466489.0,95315110.0,91904411.0,92762001.0,94002587.0,92594734.0,93309442.0,94670399.0,96064013.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/110/new/tukey.json: -------------------------------------------------------------------------------- 1 | [386.81323137358737,418.18284769318876,501.8351578787925,533.2047741983938] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/20/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"20","throughput":null,"full_id":"exists/Path.join/20","directory_name":"exists/Path.join/20","title":"exists/Path.join/20"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/20/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":346.2624576316093,"upper_bound":349.7108001538555},"point_estimate":347.90890394550706,"standard_error":0.8794940746505866},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":344.1068466802845,"upper_bound":345.8377639316291},"point_estimate":344.97194580705445,"standard_error":0.4303307667682924},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.330548187744659,"upper_bound":5.5901514116207425},"point_estimate":4.47677043870216,"standard_error":0.5732068285571776},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":344.066628019284,"upper_bound":346.546827667472},"point_estimate":345.22761754584394,"standard_error":0.6335773382570159},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.7264220708523945,"upper_bound":10.579132847978208},"point_estimate":8.807205464498916,"standard_error":0.9810678472106676}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/20/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2854.0,5708.0,8562.0,11416.0,14270.0,17124.0,19978.0,22832.0,25686.0,28540.0,31394.0,34248.0,37102.0,39956.0,42810.0,45664.0,48518.0,51372.0,54226.0,57080.0,59934.0,62788.0,65642.0,68496.0,71350.0,74204.0,77058.0,79912.0,82766.0,85620.0,88474.0,91328.0,94182.0,97036.0,99890.0,102744.0,105598.0,108452.0,111306.0,114160.0,117014.0,119868.0,122722.0,125576.0,128430.0,131284.0,134138.0,136992.0,139846.0,142700.0,145554.0,148408.0,151262.0,154116.0,156970.0,159824.0,162678.0,165532.0,168386.0,171240.0,174094.0,176948.0,179802.0,182656.0,185510.0,188364.0,191218.0,194072.0,196926.0,199780.0,202634.0,205488.0,208342.0,211196.0,214050.0,216904.0,219758.0,222612.0,225466.0,228320.0,231174.0,234028.0,236882.0,239736.0,242590.0,245444.0,248298.0,251152.0,254006.0,256860.0,259714.0,262568.0,265422.0,268276.0,271130.0,273984.0,276838.0,279692.0,282546.0,285400.0],"times":[996986.0,1981772.0,2958070.0,3978981.0,4968019.0,6367446.0,7588149.0,8647379.0,9612182.0,10508381.0,11438700.0,12537937.0,13506947.0,13964819.0,15011334.0,15911409.0,16790768.0,17845409.0,19639635.0,20759249.0,21721116.0,21874523.0,22891573.0,23542046.0,25366362.0,25223648.0,26583090.0,27740198.0,28315556.0,29347948.0,30248954.0,30936571.0,31886790.0,33439076.0,34482427.0,35226637.0,35952094.0,37030250.0,38222670.0,39302288.0,40156731.0,40908145.0,42372362.0,43159688.0,44304344.0,45402965.0,46135420.0,47114914.0,49962821.0,50861765.0,50239818.0,50365164.0,51285899.0,52399402.0,54233514.0,55985360.0,56574378.0,56613314.0,57351689.0,58981677.0,60191825.0,61093095.0,62261417.0,62739456.0,64336856.0,65536267.0,68755657.0,66844980.0,66757129.0,67986661.0,69094318.0,70211465.0,71863354.0,75862600.0,73739824.0,74082565.0,75250366.0,76735156.0,78770621.0,79705969.0,83049440.0,82582259.0,81036263.0,81996129.0,83636138.0,84363702.0,85476962.0,86877126.0,87174144.0,88134642.0,89092178.0,93059933.0,92519476.0,91206680.0,92418524.0,93543107.0,94909351.0,95715886.0,96803097.0,98586628.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/20/base/tukey.json: -------------------------------------------------------------------------------- 1 | [323.7800252603704,333.17175152023697,358.21635487988124,367.60808113974787] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/20/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"20","throughput":null,"full_id":"exists/Path.join/20","directory_name":"exists/Path.join/20","title":"exists/Path.join/20"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/20/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":346.2624576316093,"upper_bound":349.7108001538555},"point_estimate":347.90890394550706,"standard_error":0.8794940746505866},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":344.1068466802845,"upper_bound":345.8377639316291},"point_estimate":344.97194580705445,"standard_error":0.4303307667682924},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.330548187744659,"upper_bound":5.5901514116207425},"point_estimate":4.47677043870216,"standard_error":0.5732068285571776},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":344.066628019284,"upper_bound":346.546827667472},"point_estimate":345.22761754584394,"standard_error":0.6335773382570159},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.7264220708523945,"upper_bound":10.579132847978208},"point_estimate":8.807205464498916,"standard_error":0.9810678472106676}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/20/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2854.0,5708.0,8562.0,11416.0,14270.0,17124.0,19978.0,22832.0,25686.0,28540.0,31394.0,34248.0,37102.0,39956.0,42810.0,45664.0,48518.0,51372.0,54226.0,57080.0,59934.0,62788.0,65642.0,68496.0,71350.0,74204.0,77058.0,79912.0,82766.0,85620.0,88474.0,91328.0,94182.0,97036.0,99890.0,102744.0,105598.0,108452.0,111306.0,114160.0,117014.0,119868.0,122722.0,125576.0,128430.0,131284.0,134138.0,136992.0,139846.0,142700.0,145554.0,148408.0,151262.0,154116.0,156970.0,159824.0,162678.0,165532.0,168386.0,171240.0,174094.0,176948.0,179802.0,182656.0,185510.0,188364.0,191218.0,194072.0,196926.0,199780.0,202634.0,205488.0,208342.0,211196.0,214050.0,216904.0,219758.0,222612.0,225466.0,228320.0,231174.0,234028.0,236882.0,239736.0,242590.0,245444.0,248298.0,251152.0,254006.0,256860.0,259714.0,262568.0,265422.0,268276.0,271130.0,273984.0,276838.0,279692.0,282546.0,285400.0],"times":[996986.0,1981772.0,2958070.0,3978981.0,4968019.0,6367446.0,7588149.0,8647379.0,9612182.0,10508381.0,11438700.0,12537937.0,13506947.0,13964819.0,15011334.0,15911409.0,16790768.0,17845409.0,19639635.0,20759249.0,21721116.0,21874523.0,22891573.0,23542046.0,25366362.0,25223648.0,26583090.0,27740198.0,28315556.0,29347948.0,30248954.0,30936571.0,31886790.0,33439076.0,34482427.0,35226637.0,35952094.0,37030250.0,38222670.0,39302288.0,40156731.0,40908145.0,42372362.0,43159688.0,44304344.0,45402965.0,46135420.0,47114914.0,49962821.0,50861765.0,50239818.0,50365164.0,51285899.0,52399402.0,54233514.0,55985360.0,56574378.0,56613314.0,57351689.0,58981677.0,60191825.0,61093095.0,62261417.0,62739456.0,64336856.0,65536267.0,68755657.0,66844980.0,66757129.0,67986661.0,69094318.0,70211465.0,71863354.0,75862600.0,73739824.0,74082565.0,75250366.0,76735156.0,78770621.0,79705969.0,83049440.0,82582259.0,81036263.0,81996129.0,83636138.0,84363702.0,85476962.0,86877126.0,87174144.0,88134642.0,89092178.0,93059933.0,92519476.0,91206680.0,92418524.0,93543107.0,94909351.0,95715886.0,96803097.0,98586628.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/20/new/tukey.json: -------------------------------------------------------------------------------- 1 | [323.7800252603704,333.17175152023697,358.21635487988124,367.60808113974787] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/30/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"30","throughput":null,"full_id":"exists/Path.join/30","directory_name":"exists/Path.join/30","title":"exists/Path.join/30"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/30/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":371.4571917093832,"upper_bound":374.53128756162715},"point_estimate":372.92383471157723,"standard_error":0.7861355488459291},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":369.1043707611153,"upper_bound":371.8024119029677},"point_estimate":370.60185792802895,"standard_error":0.6840273125100133},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.374991776628042,"upper_bound":5.836463164579459},"point_estimate":4.84687132901541,"standard_error":0.616922275968817},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":370.48289700296135,"upper_bound":372.9476409723765},"point_estimate":371.69264917215946,"standard_error":0.6301550356108876},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.032949529497589,"upper_bound":9.46911143485682},"point_estimate":7.891263701976209,"standard_error":0.877475964061218}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/30/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2654.0,5308.0,7962.0,10616.0,13270.0,15924.0,18578.0,21232.0,23886.0,26540.0,29194.0,31848.0,34502.0,37156.0,39810.0,42464.0,45118.0,47772.0,50426.0,53080.0,55734.0,58388.0,61042.0,63696.0,66350.0,69004.0,71658.0,74312.0,76966.0,79620.0,82274.0,84928.0,87582.0,90236.0,92890.0,95544.0,98198.0,100852.0,103506.0,106160.0,108814.0,111468.0,114122.0,116776.0,119430.0,122084.0,124738.0,127392.0,130046.0,132700.0,135354.0,138008.0,140662.0,143316.0,145970.0,148624.0,151278.0,153932.0,156586.0,159240.0,161894.0,164548.0,167202.0,169856.0,172510.0,175164.0,177818.0,180472.0,183126.0,185780.0,188434.0,191088.0,193742.0,196396.0,199050.0,201704.0,204358.0,207012.0,209666.0,212320.0,214974.0,217628.0,220282.0,222936.0,225590.0,228244.0,230898.0,233552.0,236206.0,238860.0,241514.0,244168.0,246822.0,249476.0,252130.0,254784.0,257438.0,260092.0,262746.0,265400.0],"times":[963106.0,1940455.0,2894584.0,3918380.0,4886564.0,6236955.0,7400530.0,8529424.0,9527058.0,10387073.0,11454282.0,12389973.0,13215338.0,13905697.0,15160713.0,16264970.0,16847485.0,17663556.0,18693371.0,19554357.0,20718886.0,21783686.0,22773056.0,23569618.0,24442761.0,25274953.0,26271480.0,27159766.0,28237156.0,29067123.0,30278609.0,31129056.0,32448670.0,33545974.0,34320543.0,35142399.0,36478228.0,37648645.0,38748630.0,39434604.0,42302167.0,43017834.0,42684221.0,43367219.0,43810962.0,44893065.0,46201274.0,46971638.0,47791144.0,49362588.0,50795495.0,51867044.0,52148459.0,52828723.0,54194911.0,54758751.0,55452407.0,56309268.0,57726293.0,58493128.0,61987990.0,61910846.0,62646972.0,62112430.0,63227110.0,64476312.0,65400181.0,66382269.0,67410435.0,68566698.0,69723603.0,71057778.0,72559196.0,72602613.0,73228252.0,77379350.0,75609979.0,75792316.0,77388637.0,79051318.0,79864535.0,82518595.0,82582635.0,81553260.0,82621017.0,85332487.0,87053824.0,88861613.0,88708528.0,88570468.0,89137895.0,91380219.0,91338313.0,93055949.0,94353175.0,93750230.0,94440878.0,95413296.0,100217317.0,98752873.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/30/base/tukey.json: -------------------------------------------------------------------------------- 1 | [348.2934596228665,358.08323688732315,384.18930959254084,393.97908685699747] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/30/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"30","throughput":null,"full_id":"exists/Path.join/30","directory_name":"exists/Path.join/30","title":"exists/Path.join/30"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/30/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":371.4571917093832,"upper_bound":374.53128756162715},"point_estimate":372.92383471157723,"standard_error":0.7861355488459291},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":369.1043707611153,"upper_bound":371.8024119029677},"point_estimate":370.60185792802895,"standard_error":0.6840273125100133},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.374991776628042,"upper_bound":5.836463164579459},"point_estimate":4.84687132901541,"standard_error":0.616922275968817},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":370.48289700296135,"upper_bound":372.9476409723765},"point_estimate":371.69264917215946,"standard_error":0.6301550356108876},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.032949529497589,"upper_bound":9.46911143485682},"point_estimate":7.891263701976209,"standard_error":0.877475964061218}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/30/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2654.0,5308.0,7962.0,10616.0,13270.0,15924.0,18578.0,21232.0,23886.0,26540.0,29194.0,31848.0,34502.0,37156.0,39810.0,42464.0,45118.0,47772.0,50426.0,53080.0,55734.0,58388.0,61042.0,63696.0,66350.0,69004.0,71658.0,74312.0,76966.0,79620.0,82274.0,84928.0,87582.0,90236.0,92890.0,95544.0,98198.0,100852.0,103506.0,106160.0,108814.0,111468.0,114122.0,116776.0,119430.0,122084.0,124738.0,127392.0,130046.0,132700.0,135354.0,138008.0,140662.0,143316.0,145970.0,148624.0,151278.0,153932.0,156586.0,159240.0,161894.0,164548.0,167202.0,169856.0,172510.0,175164.0,177818.0,180472.0,183126.0,185780.0,188434.0,191088.0,193742.0,196396.0,199050.0,201704.0,204358.0,207012.0,209666.0,212320.0,214974.0,217628.0,220282.0,222936.0,225590.0,228244.0,230898.0,233552.0,236206.0,238860.0,241514.0,244168.0,246822.0,249476.0,252130.0,254784.0,257438.0,260092.0,262746.0,265400.0],"times":[963106.0,1940455.0,2894584.0,3918380.0,4886564.0,6236955.0,7400530.0,8529424.0,9527058.0,10387073.0,11454282.0,12389973.0,13215338.0,13905697.0,15160713.0,16264970.0,16847485.0,17663556.0,18693371.0,19554357.0,20718886.0,21783686.0,22773056.0,23569618.0,24442761.0,25274953.0,26271480.0,27159766.0,28237156.0,29067123.0,30278609.0,31129056.0,32448670.0,33545974.0,34320543.0,35142399.0,36478228.0,37648645.0,38748630.0,39434604.0,42302167.0,43017834.0,42684221.0,43367219.0,43810962.0,44893065.0,46201274.0,46971638.0,47791144.0,49362588.0,50795495.0,51867044.0,52148459.0,52828723.0,54194911.0,54758751.0,55452407.0,56309268.0,57726293.0,58493128.0,61987990.0,61910846.0,62646972.0,62112430.0,63227110.0,64476312.0,65400181.0,66382269.0,67410435.0,68566698.0,69723603.0,71057778.0,72559196.0,72602613.0,73228252.0,77379350.0,75609979.0,75792316.0,77388637.0,79051318.0,79864535.0,82518595.0,82582635.0,81553260.0,82621017.0,85332487.0,87053824.0,88861613.0,88708528.0,88570468.0,89137895.0,91380219.0,91338313.0,93055949.0,94353175.0,93750230.0,94440878.0,95413296.0,100217317.0,98752873.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/30/new/tukey.json: -------------------------------------------------------------------------------- 1 | [348.2934596228665,358.08323688732315,384.18930959254084,393.97908685699747] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/40/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"40","throughput":null,"full_id":"exists/Path.join/40","directory_name":"exists/Path.join/40","title":"exists/Path.join/40"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/40/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":383.420715790765,"upper_bound":386.9207724957308},"point_estimate":385.10447109523744,"standard_error":0.8936891868034005},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":380.8494825049964,"upper_bound":383.85276699029123},"point_estimate":382.05336863783464,"standard_error":0.768008735487199},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.991091652379004,"upper_bound":7.102804521341224},"point_estimate":5.299319700578453,"standard_error":0.7715924580129766},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":382.281508015169,"upper_bound":385.01125886727283},"point_estimate":383.6116792107902,"standard_error":0.697221123996211},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.053665824958788,"upper_bound":10.582020458516237},"point_estimate":8.987367044648444,"standard_error":0.901235827897344}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/40/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2575.0,5150.0,7725.0,10300.0,12875.0,15450.0,18025.0,20600.0,23175.0,25750.0,28325.0,30900.0,33475.0,36050.0,38625.0,41200.0,43775.0,46350.0,48925.0,51500.0,54075.0,56650.0,59225.0,61800.0,64375.0,66950.0,69525.0,72100.0,74675.0,77250.0,79825.0,82400.0,84975.0,87550.0,90125.0,92700.0,95275.0,97850.0,100425.0,103000.0,105575.0,108150.0,110725.0,113300.0,115875.0,118450.0,121025.0,123600.0,126175.0,128750.0,131325.0,133900.0,136475.0,139050.0,141625.0,144200.0,146775.0,149350.0,151925.0,154500.0,157075.0,159650.0,162225.0,164800.0,167375.0,169950.0,172525.0,175100.0,177675.0,180250.0,182825.0,185400.0,187975.0,190550.0,193125.0,195700.0,198275.0,200850.0,203425.0,206000.0,208575.0,211150.0,213725.0,216300.0,218875.0,221450.0,224025.0,226600.0,229175.0,231750.0,234325.0,236900.0,239475.0,242050.0,244625.0,247200.0,249775.0,252350.0,254925.0,257500.0],"times":[987770.0,1957548.0,2982667.0,3951327.0,4945050.0,6266128.0,7429047.0,8492246.0,9505638.0,10275876.0,11304320.0,12267106.0,13671076.0,14032999.0,14757875.0,15938545.0,16692533.0,17482744.0,18533989.0,19238614.0,20279820.0,21338685.0,22386045.0,23501515.0,24366605.0,25359401.0,26203842.0,27589558.0,29708719.0,30811661.0,31070851.0,31778306.0,32462645.0,33440657.0,34085577.0,34847222.0,36217539.0,37041146.0,37972576.0,38941774.0,40077322.0,41280368.0,45330876.0,46631845.0,44589088.0,44759776.0,46816464.0,47716193.0,48882461.0,48905442.0,49817782.0,50699060.0,52657264.0,55869794.0,54752673.0,55058742.0,55218882.0,57453630.0,58619281.0,59255521.0,59867626.0,60647968.0,61479208.0,62320155.0,63603825.0,64671444.0,65252352.0,66823682.0,68868417.0,71577845.0,70063508.0,69801181.0,70676063.0,73284133.0,74251091.0,74758357.0,75727059.0,77320081.0,77246269.0,77887433.0,79698476.0,80129599.0,83095761.0,84065815.0,83100309.0,87177677.0,85390889.0,85897283.0,87118499.0,88623198.0,91132169.0,91925034.0,93425017.0,92851974.0,96289872.0,93768870.0,94585472.0,96858877.0,97948670.0,97596631.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/40/base/tukey.json: -------------------------------------------------------------------------------- 1 | [355.2326025672315,367.14459137629,398.9098948671128,410.8218836761714] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/40/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"40","throughput":null,"full_id":"exists/Path.join/40","directory_name":"exists/Path.join/40","title":"exists/Path.join/40"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/40/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":383.420715790765,"upper_bound":386.9207724957308},"point_estimate":385.10447109523744,"standard_error":0.8936891868034005},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":380.8494825049964,"upper_bound":383.85276699029123},"point_estimate":382.05336863783464,"standard_error":0.768008735487199},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.991091652379004,"upper_bound":7.102804521341224},"point_estimate":5.299319700578453,"standard_error":0.7715924580129766},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":382.281508015169,"upper_bound":385.01125886727283},"point_estimate":383.6116792107902,"standard_error":0.697221123996211},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.053665824958788,"upper_bound":10.582020458516237},"point_estimate":8.987367044648444,"standard_error":0.901235827897344}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/40/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2575.0,5150.0,7725.0,10300.0,12875.0,15450.0,18025.0,20600.0,23175.0,25750.0,28325.0,30900.0,33475.0,36050.0,38625.0,41200.0,43775.0,46350.0,48925.0,51500.0,54075.0,56650.0,59225.0,61800.0,64375.0,66950.0,69525.0,72100.0,74675.0,77250.0,79825.0,82400.0,84975.0,87550.0,90125.0,92700.0,95275.0,97850.0,100425.0,103000.0,105575.0,108150.0,110725.0,113300.0,115875.0,118450.0,121025.0,123600.0,126175.0,128750.0,131325.0,133900.0,136475.0,139050.0,141625.0,144200.0,146775.0,149350.0,151925.0,154500.0,157075.0,159650.0,162225.0,164800.0,167375.0,169950.0,172525.0,175100.0,177675.0,180250.0,182825.0,185400.0,187975.0,190550.0,193125.0,195700.0,198275.0,200850.0,203425.0,206000.0,208575.0,211150.0,213725.0,216300.0,218875.0,221450.0,224025.0,226600.0,229175.0,231750.0,234325.0,236900.0,239475.0,242050.0,244625.0,247200.0,249775.0,252350.0,254925.0,257500.0],"times":[987770.0,1957548.0,2982667.0,3951327.0,4945050.0,6266128.0,7429047.0,8492246.0,9505638.0,10275876.0,11304320.0,12267106.0,13671076.0,14032999.0,14757875.0,15938545.0,16692533.0,17482744.0,18533989.0,19238614.0,20279820.0,21338685.0,22386045.0,23501515.0,24366605.0,25359401.0,26203842.0,27589558.0,29708719.0,30811661.0,31070851.0,31778306.0,32462645.0,33440657.0,34085577.0,34847222.0,36217539.0,37041146.0,37972576.0,38941774.0,40077322.0,41280368.0,45330876.0,46631845.0,44589088.0,44759776.0,46816464.0,47716193.0,48882461.0,48905442.0,49817782.0,50699060.0,52657264.0,55869794.0,54752673.0,55058742.0,55218882.0,57453630.0,58619281.0,59255521.0,59867626.0,60647968.0,61479208.0,62320155.0,63603825.0,64671444.0,65252352.0,66823682.0,68868417.0,71577845.0,70063508.0,69801181.0,70676063.0,73284133.0,74251091.0,74758357.0,75727059.0,77320081.0,77246269.0,77887433.0,79698476.0,80129599.0,83095761.0,84065815.0,83100309.0,87177677.0,85390889.0,85897283.0,87118499.0,88623198.0,91132169.0,91925034.0,93425017.0,92851974.0,96289872.0,93768870.0,94585472.0,96858877.0,97948670.0,97596631.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/40/new/tukey.json: -------------------------------------------------------------------------------- 1 | [355.2326025672315,367.14459137629,398.9098948671128,410.8218836761714] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/50/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"50","throughput":null,"full_id":"exists/Path.join/50","directory_name":"exists/Path.join/50","title":"exists/Path.join/50"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/50/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":392.7530179819356,"upper_bound":396.2517721228702},"point_estimate":394.4307708237926,"standard_error":0.8900021417398251},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":390.06359983929286,"upper_bound":393.6168581759743},"point_estimate":391.7054298171213,"standard_error":0.8598159407599396},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4.146761026128196,"upper_bound":6.802745278986048},"point_estimate":5.227719968235808,"standard_error":0.6760474871451057},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":391.6901117706838,"upper_bound":394.51170688128934},"point_estimate":393.03735728827945,"standard_error":0.7203136319890632},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.989712486782847,"upper_bound":10.54974686193874},"point_estimate":8.949490226634381,"standard_error":0.9057950460813908}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/50/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2489.0,4978.0,7467.0,9956.0,12445.0,14934.0,17423.0,19912.0,22401.0,24890.0,27379.0,29868.0,32357.0,34846.0,37335.0,39824.0,42313.0,44802.0,47291.0,49780.0,52269.0,54758.0,57247.0,59736.0,62225.0,64714.0,67203.0,69692.0,72181.0,74670.0,77159.0,79648.0,82137.0,84626.0,87115.0,89604.0,92093.0,94582.0,97071.0,99560.0,102049.0,104538.0,107027.0,109516.0,112005.0,114494.0,116983.0,119472.0,121961.0,124450.0,126939.0,129428.0,131917.0,134406.0,136895.0,139384.0,141873.0,144362.0,146851.0,149340.0,151829.0,154318.0,156807.0,159296.0,161785.0,164274.0,166763.0,169252.0,171741.0,174230.0,176719.0,179208.0,181697.0,184186.0,186675.0,189164.0,191653.0,194142.0,196631.0,199120.0,201609.0,204098.0,206587.0,209076.0,211565.0,214054.0,216543.0,219032.0,221521.0,224010.0,226499.0,228988.0,231477.0,233966.0,236455.0,238944.0,241433.0,243922.0,246411.0,248900.0],"times":[966202.0,1958551.0,2926062.0,3812300.0,4911816.0,6281955.0,7229149.0,8436116.0,9413799.0,10279843.0,11173364.0,12424657.0,13628846.0,14224879.0,14847679.0,15989444.0,16813731.0,17312213.0,18327035.0,19252396.0,20124559.0,21310259.0,22074907.0,23187719.0,24132989.0,25335535.0,26313002.0,27142742.0,27956120.0,29053553.0,29846744.0,30760550.0,31810394.0,32936443.0,34160696.0,35347557.0,37491315.0,38912937.0,38489623.0,38834732.0,39419883.0,40223204.0,41201943.0,42611499.0,43656873.0,44447820.0,45902527.0,46941797.0,47569498.0,48985618.0,50288751.0,51086518.0,52576142.0,53661981.0,54033285.0,54654913.0,55802294.0,56979770.0,60634185.0,59383441.0,59960922.0,61090254.0,61542770.0,61811600.0,62760132.0,63961521.0,64577966.0,66167105.0,66924908.0,68008819.0,70413411.0,70134008.0,70795457.0,74162709.0,73949184.0,72932578.0,74200554.0,75546777.0,77654065.0,78836056.0,78433490.0,79670743.0,80567834.0,81327950.0,82767314.0,83606640.0,88527127.0,85638398.0,85398677.0,87306975.0,87881918.0,89811985.0,91380519.0,92209913.0,92121949.0,94399528.0,95402567.0,98877567.0,97523419.0,97981986.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/50/base/tukey.json: -------------------------------------------------------------------------------- 1 | [368.1711691548633,378.598137561886,406.40338664727983,416.8303550543025] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/50/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"50","throughput":null,"full_id":"exists/Path.join/50","directory_name":"exists/Path.join/50","title":"exists/Path.join/50"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/50/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":392.7530179819356,"upper_bound":396.2517721228702},"point_estimate":394.4307708237926,"standard_error":0.8900021417398251},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":390.06359983929286,"upper_bound":393.6168581759743},"point_estimate":391.7054298171213,"standard_error":0.8598159407599396},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4.146761026128196,"upper_bound":6.802745278986048},"point_estimate":5.227719968235808,"standard_error":0.6760474871451057},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":391.6901117706838,"upper_bound":394.51170688128934},"point_estimate":393.03735728827945,"standard_error":0.7203136319890632},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.989712486782847,"upper_bound":10.54974686193874},"point_estimate":8.949490226634381,"standard_error":0.9057950460813908}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/50/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2489.0,4978.0,7467.0,9956.0,12445.0,14934.0,17423.0,19912.0,22401.0,24890.0,27379.0,29868.0,32357.0,34846.0,37335.0,39824.0,42313.0,44802.0,47291.0,49780.0,52269.0,54758.0,57247.0,59736.0,62225.0,64714.0,67203.0,69692.0,72181.0,74670.0,77159.0,79648.0,82137.0,84626.0,87115.0,89604.0,92093.0,94582.0,97071.0,99560.0,102049.0,104538.0,107027.0,109516.0,112005.0,114494.0,116983.0,119472.0,121961.0,124450.0,126939.0,129428.0,131917.0,134406.0,136895.0,139384.0,141873.0,144362.0,146851.0,149340.0,151829.0,154318.0,156807.0,159296.0,161785.0,164274.0,166763.0,169252.0,171741.0,174230.0,176719.0,179208.0,181697.0,184186.0,186675.0,189164.0,191653.0,194142.0,196631.0,199120.0,201609.0,204098.0,206587.0,209076.0,211565.0,214054.0,216543.0,219032.0,221521.0,224010.0,226499.0,228988.0,231477.0,233966.0,236455.0,238944.0,241433.0,243922.0,246411.0,248900.0],"times":[966202.0,1958551.0,2926062.0,3812300.0,4911816.0,6281955.0,7229149.0,8436116.0,9413799.0,10279843.0,11173364.0,12424657.0,13628846.0,14224879.0,14847679.0,15989444.0,16813731.0,17312213.0,18327035.0,19252396.0,20124559.0,21310259.0,22074907.0,23187719.0,24132989.0,25335535.0,26313002.0,27142742.0,27956120.0,29053553.0,29846744.0,30760550.0,31810394.0,32936443.0,34160696.0,35347557.0,37491315.0,38912937.0,38489623.0,38834732.0,39419883.0,40223204.0,41201943.0,42611499.0,43656873.0,44447820.0,45902527.0,46941797.0,47569498.0,48985618.0,50288751.0,51086518.0,52576142.0,53661981.0,54033285.0,54654913.0,55802294.0,56979770.0,60634185.0,59383441.0,59960922.0,61090254.0,61542770.0,61811600.0,62760132.0,63961521.0,64577966.0,66167105.0,66924908.0,68008819.0,70413411.0,70134008.0,70795457.0,74162709.0,73949184.0,72932578.0,74200554.0,75546777.0,77654065.0,78836056.0,78433490.0,79670743.0,80567834.0,81327950.0,82767314.0,83606640.0,88527127.0,85638398.0,85398677.0,87306975.0,87881918.0,89811985.0,91380519.0,92209913.0,92121949.0,94399528.0,95402567.0,98877567.0,97523419.0,97981986.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/50/new/tukey.json: -------------------------------------------------------------------------------- 1 | [368.1711691548633,378.598137561886,406.40338664727983,416.8303550543025] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/60/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"60","throughput":null,"full_id":"exists/Path.join/60","directory_name":"exists/Path.join/60","title":"exists/Path.join/60"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/60/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":410.9805742151968,"upper_bound":416.86955833798754},"point_estimate":413.8936112984949,"standard_error":1.4979727090286552},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":405.6350870575841,"upper_bound":418.79192708333335},"point_estimate":411.4919917619826,"standard_error":4.10702407289895},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":13.325879552969173,"upper_bound":22.631226797038945},"point_estimate":19.220085212503328,"standard_error":2.428266943076673},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":409.18401505077014,"upper_bound":415.6225758412543},"point_estimate":412.4055333314348,"standard_error":1.6416234016693627},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":13.557417871625095,"upper_bound":16.3905079893574},"point_estimate":15.090311208623493,"standard_error":0.7191376045360092}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/60/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2304.0,4608.0,6912.0,9216.0,11520.0,13824.0,16128.0,18432.0,20736.0,23040.0,25344.0,27648.0,29952.0,32256.0,34560.0,36864.0,39168.0,41472.0,43776.0,46080.0,48384.0,50688.0,52992.0,55296.0,57600.0,59904.0,62208.0,64512.0,66816.0,69120.0,71424.0,73728.0,76032.0,78336.0,80640.0,82944.0,85248.0,87552.0,89856.0,92160.0,94464.0,96768.0,99072.0,101376.0,103680.0,105984.0,108288.0,110592.0,112896.0,115200.0,117504.0,119808.0,122112.0,124416.0,126720.0,129024.0,131328.0,133632.0,135936.0,138240.0,140544.0,142848.0,145152.0,147456.0,149760.0,152064.0,154368.0,156672.0,158976.0,161280.0,163584.0,165888.0,168192.0,170496.0,172800.0,175104.0,177408.0,179712.0,182016.0,184320.0,186624.0,188928.0,191232.0,193536.0,195840.0,198144.0,200448.0,202752.0,205056.0,207360.0,209664.0,211968.0,214272.0,216576.0,218880.0,221184.0,223488.0,225792.0,228096.0,230400.0],"times":[914241.0,1842724.0,2686989.0,3672928.0,4557986.0,5763138.0,6887769.0,8095761.0,9255738.0,10166775.0,11115210.0,11959130.0,12719623.0,13693556.0,14294606.0,14891317.0,16945909.0,18304241.0,18727946.0,19468409.0,20662263.0,22273867.0,23553642.0,24148850.0,25065823.0,24445380.0,25961413.0,25882023.0,26791461.0,27687705.0,28451635.0,29258003.0,30063343.0,30965482.0,31991767.0,32970055.0,37219018.0,36964555.0,36557912.0,36804156.0,37434804.0,41468007.0,41220589.0,40628633.0,41625831.0,42018840.0,43977881.0,45698688.0,48532837.0,48318114.0,48149054.0,48496792.0,48661490.0,49278713.0,54046240.0,53922410.0,52911789.0,54251973.0,59446218.0,57893796.0,56586157.0,56805269.0,57582603.0,59130531.0,61252522.0,64596598.0,64678608.0,65709616.0,67447440.0,67810777.0,70223163.0,67754904.0,66898601.0,75274798.0,75054486.0,70546144.0,69690537.0,76367965.0,73951127.0,72887546.0,76081354.0,80176549.0,80019394.0,80352198.0,78216427.0,79812473.0,79989453.0,87557925.0,81936872.0,86987532.0,84396094.0,83793849.0,86186317.0,92251073.0,92907060.0,89612821.0,94914371.0,93657701.0,97262674.0,93498557.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/60/base/tukey.json: -------------------------------------------------------------------------------- 1 | [326.02631835049567,363.2156602603173,462.3872386865083,499.5765805963299] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/60/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"60","throughput":null,"full_id":"exists/Path.join/60","directory_name":"exists/Path.join/60","title":"exists/Path.join/60"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/60/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":410.9805742151968,"upper_bound":416.86955833798754},"point_estimate":413.8936112984949,"standard_error":1.4979727090286552},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":405.6350870575841,"upper_bound":418.79192708333335},"point_estimate":411.4919917619826,"standard_error":4.10702407289895},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":13.325879552969173,"upper_bound":22.631226797038945},"point_estimate":19.220085212503328,"standard_error":2.428266943076673},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":409.18401505077014,"upper_bound":415.6225758412543},"point_estimate":412.4055333314348,"standard_error":1.6416234016693627},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":13.557417871625095,"upper_bound":16.3905079893574},"point_estimate":15.090311208623493,"standard_error":0.7191376045360092}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/60/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2304.0,4608.0,6912.0,9216.0,11520.0,13824.0,16128.0,18432.0,20736.0,23040.0,25344.0,27648.0,29952.0,32256.0,34560.0,36864.0,39168.0,41472.0,43776.0,46080.0,48384.0,50688.0,52992.0,55296.0,57600.0,59904.0,62208.0,64512.0,66816.0,69120.0,71424.0,73728.0,76032.0,78336.0,80640.0,82944.0,85248.0,87552.0,89856.0,92160.0,94464.0,96768.0,99072.0,101376.0,103680.0,105984.0,108288.0,110592.0,112896.0,115200.0,117504.0,119808.0,122112.0,124416.0,126720.0,129024.0,131328.0,133632.0,135936.0,138240.0,140544.0,142848.0,145152.0,147456.0,149760.0,152064.0,154368.0,156672.0,158976.0,161280.0,163584.0,165888.0,168192.0,170496.0,172800.0,175104.0,177408.0,179712.0,182016.0,184320.0,186624.0,188928.0,191232.0,193536.0,195840.0,198144.0,200448.0,202752.0,205056.0,207360.0,209664.0,211968.0,214272.0,216576.0,218880.0,221184.0,223488.0,225792.0,228096.0,230400.0],"times":[914241.0,1842724.0,2686989.0,3672928.0,4557986.0,5763138.0,6887769.0,8095761.0,9255738.0,10166775.0,11115210.0,11959130.0,12719623.0,13693556.0,14294606.0,14891317.0,16945909.0,18304241.0,18727946.0,19468409.0,20662263.0,22273867.0,23553642.0,24148850.0,25065823.0,24445380.0,25961413.0,25882023.0,26791461.0,27687705.0,28451635.0,29258003.0,30063343.0,30965482.0,31991767.0,32970055.0,37219018.0,36964555.0,36557912.0,36804156.0,37434804.0,41468007.0,41220589.0,40628633.0,41625831.0,42018840.0,43977881.0,45698688.0,48532837.0,48318114.0,48149054.0,48496792.0,48661490.0,49278713.0,54046240.0,53922410.0,52911789.0,54251973.0,59446218.0,57893796.0,56586157.0,56805269.0,57582603.0,59130531.0,61252522.0,64596598.0,64678608.0,65709616.0,67447440.0,67810777.0,70223163.0,67754904.0,66898601.0,75274798.0,75054486.0,70546144.0,69690537.0,76367965.0,73951127.0,72887546.0,76081354.0,80176549.0,80019394.0,80352198.0,78216427.0,79812473.0,79989453.0,87557925.0,81936872.0,86987532.0,84396094.0,83793849.0,86186317.0,92251073.0,92907060.0,89612821.0,94914371.0,93657701.0,97262674.0,93498557.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/60/new/tukey.json: -------------------------------------------------------------------------------- 1 | [326.02631835049567,363.2156602603173,462.3872386865083,499.5765805963299] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/70/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"70","throughput":null,"full_id":"exists/Path.join/70","directory_name":"exists/Path.join/70","title":"exists/Path.join/70"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/70/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":414.6001059494424,"upper_bound":418.24789457985867},"point_estimate":416.36502557642564,"standard_error":0.9335320229782443},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":412.64657683408194,"upper_bound":415.31183953649474},"point_estimate":413.7567375128293,"standard_error":0.7415660233497259},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4.759801288844955,"upper_bound":8.353354194815108},"point_estimate":6.568788726419246,"standard_error":0.914205255784457},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":411.2861733662082,"upper_bound":414.37547327654914},"point_estimate":412.7298815235765,"standard_error":0.7907115159339376},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.5251579110742375,"upper_bound":10.922638490059777},"point_estimate":9.372176192615845,"standard_error":0.8665461968491002}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/70/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2370.0,4740.0,7110.0,9480.0,11850.0,14220.0,16590.0,18960.0,21330.0,23700.0,26070.0,28440.0,30810.0,33180.0,35550.0,37920.0,40290.0,42660.0,45030.0,47400.0,49770.0,52140.0,54510.0,56880.0,59250.0,61620.0,63990.0,66360.0,68730.0,71100.0,73470.0,75840.0,78210.0,80580.0,82950.0,85320.0,87690.0,90060.0,92430.0,94800.0,97170.0,99540.0,101910.0,104280.0,106650.0,109020.0,111390.0,113760.0,116130.0,118500.0,120870.0,123240.0,125610.0,127980.0,130350.0,132720.0,135090.0,137460.0,139830.0,142200.0,144570.0,146940.0,149310.0,151680.0,154050.0,156420.0,158790.0,161160.0,163530.0,165900.0,168270.0,170640.0,173010.0,175380.0,177750.0,180120.0,182490.0,184860.0,187230.0,189600.0,191970.0,194340.0,196710.0,199080.0,201450.0,203820.0,206190.0,208560.0,210930.0,213300.0,215670.0,218040.0,220410.0,222780.0,225150.0,227520.0,229890.0,232260.0,234630.0,237000.0],"times":[1058805.0,1959702.0,2923151.0,3905022.0,4967428.0,6223406.0,7341017.0,8428673.0,9311680.0,10173698.0,11162531.0,12251298.0,13454615.0,14236372.0,15104080.0,15686274.0,16659226.0,17691065.0,18573734.0,19713842.0,20391997.0,21427436.0,22362425.0,23247890.0,24488262.0,25295713.0,26310538.0,27030050.0,28224384.0,28955201.0,30162651.0,31249225.0,32336389.0,33865199.0,35626661.0,36388370.0,36290148.0,37417744.0,38425166.0,39691878.0,42404244.0,43483117.0,42879496.0,43653333.0,45028125.0,45244486.0,46053864.0,47201525.0,48334779.0,49163168.0,50887218.0,51340607.0,52531523.0,52890324.0,54023165.0,55233387.0,58748267.0,57276125.0,57745999.0,58166572.0,59945725.0,61376605.0,62316158.0,63508433.0,63124755.0,65772302.0,65947367.0,66274754.0,66590311.0,67367053.0,69535950.0,71212088.0,73273978.0,71330213.0,71797921.0,73202470.0,75683446.0,75896763.0,76409899.0,77398237.0,78582946.0,79050359.0,79986937.0,80836633.0,82434739.0,85496743.0,84846459.0,85104099.0,85259489.0,87086123.0,88470592.0,89835805.0,90951432.0,91093126.0,93593037.0,94435104.0,98038980.0,94689234.0,95217669.0,97182455.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/70/base/tukey.json: -------------------------------------------------------------------------------- 1 | [384.22148751927125,397.1971083733974,431.7987639844004,444.77438483852654] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/70/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"70","throughput":null,"full_id":"exists/Path.join/70","directory_name":"exists/Path.join/70","title":"exists/Path.join/70"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/70/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":414.6001059494424,"upper_bound":418.24789457985867},"point_estimate":416.36502557642564,"standard_error":0.9335320229782443},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":412.64657683408194,"upper_bound":415.31183953649474},"point_estimate":413.7567375128293,"standard_error":0.7415660233497259},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4.759801288844955,"upper_bound":8.353354194815108},"point_estimate":6.568788726419246,"standard_error":0.914205255784457},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":411.2861733662082,"upper_bound":414.37547327654914},"point_estimate":412.7298815235765,"standard_error":0.7907115159339376},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.5251579110742375,"upper_bound":10.922638490059777},"point_estimate":9.372176192615845,"standard_error":0.8665461968491002}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/70/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2370.0,4740.0,7110.0,9480.0,11850.0,14220.0,16590.0,18960.0,21330.0,23700.0,26070.0,28440.0,30810.0,33180.0,35550.0,37920.0,40290.0,42660.0,45030.0,47400.0,49770.0,52140.0,54510.0,56880.0,59250.0,61620.0,63990.0,66360.0,68730.0,71100.0,73470.0,75840.0,78210.0,80580.0,82950.0,85320.0,87690.0,90060.0,92430.0,94800.0,97170.0,99540.0,101910.0,104280.0,106650.0,109020.0,111390.0,113760.0,116130.0,118500.0,120870.0,123240.0,125610.0,127980.0,130350.0,132720.0,135090.0,137460.0,139830.0,142200.0,144570.0,146940.0,149310.0,151680.0,154050.0,156420.0,158790.0,161160.0,163530.0,165900.0,168270.0,170640.0,173010.0,175380.0,177750.0,180120.0,182490.0,184860.0,187230.0,189600.0,191970.0,194340.0,196710.0,199080.0,201450.0,203820.0,206190.0,208560.0,210930.0,213300.0,215670.0,218040.0,220410.0,222780.0,225150.0,227520.0,229890.0,232260.0,234630.0,237000.0],"times":[1058805.0,1959702.0,2923151.0,3905022.0,4967428.0,6223406.0,7341017.0,8428673.0,9311680.0,10173698.0,11162531.0,12251298.0,13454615.0,14236372.0,15104080.0,15686274.0,16659226.0,17691065.0,18573734.0,19713842.0,20391997.0,21427436.0,22362425.0,23247890.0,24488262.0,25295713.0,26310538.0,27030050.0,28224384.0,28955201.0,30162651.0,31249225.0,32336389.0,33865199.0,35626661.0,36388370.0,36290148.0,37417744.0,38425166.0,39691878.0,42404244.0,43483117.0,42879496.0,43653333.0,45028125.0,45244486.0,46053864.0,47201525.0,48334779.0,49163168.0,50887218.0,51340607.0,52531523.0,52890324.0,54023165.0,55233387.0,58748267.0,57276125.0,57745999.0,58166572.0,59945725.0,61376605.0,62316158.0,63508433.0,63124755.0,65772302.0,65947367.0,66274754.0,66590311.0,67367053.0,69535950.0,71212088.0,73273978.0,71330213.0,71797921.0,73202470.0,75683446.0,75896763.0,76409899.0,77398237.0,78582946.0,79050359.0,79986937.0,80836633.0,82434739.0,85496743.0,84846459.0,85104099.0,85259489.0,87086123.0,88470592.0,89835805.0,90951432.0,91093126.0,93593037.0,94435104.0,98038980.0,94689234.0,95217669.0,97182455.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/70/new/tukey.json: -------------------------------------------------------------------------------- 1 | [384.22148751927125,397.1971083733974,431.7987639844004,444.77438483852654] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/80/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"80","throughput":null,"full_id":"exists/Path.join/80","directory_name":"exists/Path.join/80","title":"exists/Path.join/80"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/80/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":428.59155819084356,"upper_bound":432.40913140285227},"point_estimate":430.457464677344,"standard_error":0.9821802784250883},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":425.6493551160791,"upper_bound":431.1663923632349},"point_estimate":428.4761198237941,"standard_error":1.381221740011536},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.72393204690297,"upper_bound":11.666737095595614},"point_estimate":9.015725904997886,"standard_error":1.246389602615635},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":425.3310096817389,"upper_bound":428.4507088660474},"point_estimate":426.8212809368615,"standard_error":0.7997706459773615},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":8.173966745211844,"upper_bound":11.291860191500625},"point_estimate":9.861887004172692,"standard_error":0.7951135618355091}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/80/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2326.0,4652.0,6978.0,9304.0,11630.0,13956.0,16282.0,18608.0,20934.0,23260.0,25586.0,27912.0,30238.0,32564.0,34890.0,37216.0,39542.0,41868.0,44194.0,46520.0,48846.0,51172.0,53498.0,55824.0,58150.0,60476.0,62802.0,65128.0,67454.0,69780.0,72106.0,74432.0,76758.0,79084.0,81410.0,83736.0,86062.0,88388.0,90714.0,93040.0,95366.0,97692.0,100018.0,102344.0,104670.0,106996.0,109322.0,111648.0,113974.0,116300.0,118626.0,120952.0,123278.0,125604.0,127930.0,130256.0,132582.0,134908.0,137234.0,139560.0,141886.0,144212.0,146538.0,148864.0,151190.0,153516.0,155842.0,158168.0,160494.0,162820.0,165146.0,167472.0,169798.0,172124.0,174450.0,176776.0,179102.0,181428.0,183754.0,186080.0,188406.0,190732.0,193058.0,195384.0,197710.0,200036.0,202362.0,204688.0,207014.0,209340.0,211666.0,213992.0,216318.0,218644.0,220970.0,223296.0,225622.0,227948.0,230274.0,232600.0],"times":[1031494.0,2012496.0,3011581.0,4054334.0,4950302.0,6155654.0,7215945.0,8431813.0,9472340.0,10615059.0,11578212.0,12466618.0,13833425.0,14706783.0,15398947.0,15873847.0,17256449.0,18066172.0,18514635.0,19635540.0,20402591.0,21280138.0,22760517.0,23897223.0,25149384.0,25705145.0,27530908.0,28852550.0,29686160.0,30307551.0,30681150.0,31696898.0,32952137.0,36363705.0,36371301.0,36927976.0,36587821.0,37367888.0,38194202.0,39124620.0,40175045.0,41030693.0,42262562.0,43928228.0,45196458.0,45790373.0,46362013.0,47302465.0,48223631.0,49172629.0,50409779.0,52147159.0,54105140.0,53612258.0,55360998.0,56233370.0,57772486.0,57045031.0,59230734.0,59798825.0,60323545.0,62612693.0,63871074.0,64873059.0,65109406.0,67861360.0,66865604.0,66650161.0,70458936.0,71537576.0,70982776.0,72457080.0,72829807.0,73117871.0,74324222.0,74212202.0,75611756.0,76556302.0,77301585.0,78414934.0,79843071.0,82455429.0,82936784.0,81843465.0,82808963.0,83847344.0,85258358.0,86119569.0,88405551.0,89279615.0,88835110.0,91689392.0,91537065.0,95267506.0,93399279.0,96712977.0,97204654.0,96026969.0,97231039.0,97617657.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/80/base/tukey.json: -------------------------------------------------------------------------------- 1 | [383.7344079513058,403.2411682015659,455.25919553559294,474.76595578585307] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/80/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"80","throughput":null,"full_id":"exists/Path.join/80","directory_name":"exists/Path.join/80","title":"exists/Path.join/80"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/80/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":428.59155819084356,"upper_bound":432.40913140285227},"point_estimate":430.457464677344,"standard_error":0.9821802784250883},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":425.6493551160791,"upper_bound":431.1663923632349},"point_estimate":428.4761198237941,"standard_error":1.381221740011536},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.72393204690297,"upper_bound":11.666737095595614},"point_estimate":9.015725904997886,"standard_error":1.246389602615635},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":425.3310096817389,"upper_bound":428.4507088660474},"point_estimate":426.8212809368615,"standard_error":0.7997706459773615},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":8.173966745211844,"upper_bound":11.291860191500625},"point_estimate":9.861887004172692,"standard_error":0.7951135618355091}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/80/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2326.0,4652.0,6978.0,9304.0,11630.0,13956.0,16282.0,18608.0,20934.0,23260.0,25586.0,27912.0,30238.0,32564.0,34890.0,37216.0,39542.0,41868.0,44194.0,46520.0,48846.0,51172.0,53498.0,55824.0,58150.0,60476.0,62802.0,65128.0,67454.0,69780.0,72106.0,74432.0,76758.0,79084.0,81410.0,83736.0,86062.0,88388.0,90714.0,93040.0,95366.0,97692.0,100018.0,102344.0,104670.0,106996.0,109322.0,111648.0,113974.0,116300.0,118626.0,120952.0,123278.0,125604.0,127930.0,130256.0,132582.0,134908.0,137234.0,139560.0,141886.0,144212.0,146538.0,148864.0,151190.0,153516.0,155842.0,158168.0,160494.0,162820.0,165146.0,167472.0,169798.0,172124.0,174450.0,176776.0,179102.0,181428.0,183754.0,186080.0,188406.0,190732.0,193058.0,195384.0,197710.0,200036.0,202362.0,204688.0,207014.0,209340.0,211666.0,213992.0,216318.0,218644.0,220970.0,223296.0,225622.0,227948.0,230274.0,232600.0],"times":[1031494.0,2012496.0,3011581.0,4054334.0,4950302.0,6155654.0,7215945.0,8431813.0,9472340.0,10615059.0,11578212.0,12466618.0,13833425.0,14706783.0,15398947.0,15873847.0,17256449.0,18066172.0,18514635.0,19635540.0,20402591.0,21280138.0,22760517.0,23897223.0,25149384.0,25705145.0,27530908.0,28852550.0,29686160.0,30307551.0,30681150.0,31696898.0,32952137.0,36363705.0,36371301.0,36927976.0,36587821.0,37367888.0,38194202.0,39124620.0,40175045.0,41030693.0,42262562.0,43928228.0,45196458.0,45790373.0,46362013.0,47302465.0,48223631.0,49172629.0,50409779.0,52147159.0,54105140.0,53612258.0,55360998.0,56233370.0,57772486.0,57045031.0,59230734.0,59798825.0,60323545.0,62612693.0,63871074.0,64873059.0,65109406.0,67861360.0,66865604.0,66650161.0,70458936.0,71537576.0,70982776.0,72457080.0,72829807.0,73117871.0,74324222.0,74212202.0,75611756.0,76556302.0,77301585.0,78414934.0,79843071.0,82455429.0,82936784.0,81843465.0,82808963.0,83847344.0,85258358.0,86119569.0,88405551.0,89279615.0,88835110.0,91689392.0,91537065.0,95267506.0,93399279.0,96712977.0,97204654.0,96026969.0,97231039.0,97617657.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/80/new/tukey.json: -------------------------------------------------------------------------------- 1 | [383.7344079513058,403.2411682015659,455.25919553559294,474.76595578585307] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/90/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"90","throughput":null,"full_id":"exists/Path.join/90","directory_name":"exists/Path.join/90","title":"exists/Path.join/90"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/90/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":448.56633170946526,"upper_bound":458.19005730440074},"point_estimate":453.18221972049554,"standard_error":2.4491952644738926},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":445.23968312481554,"upper_bound":454.1243166699598},"point_estimate":449.22489866058334,"standard_error":1.9623395334576343},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":11.971566538792914,"upper_bound":23.1667431275143},"point_estimate":17.115929176216945,"standard_error":2.9547753577068625},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":453.432778295893,"upper_bound":471.54034838180127},"point_estimate":462.5008911769978,"standard_error":4.629157859640346},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.823680741009603,"upper_bound":29.936012411184613},"point_estimate":24.462977069282843,"standard_error":2.860703590314593}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/90/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2169.0,4338.0,6507.0,8676.0,10845.0,13014.0,15183.0,17352.0,19521.0,21690.0,23859.0,26028.0,28197.0,30366.0,32535.0,34704.0,36873.0,39042.0,41211.0,43380.0,45549.0,47718.0,49887.0,52056.0,54225.0,56394.0,58563.0,60732.0,62901.0,65070.0,67239.0,69408.0,71577.0,73746.0,75915.0,78084.0,80253.0,82422.0,84591.0,86760.0,88929.0,91098.0,93267.0,95436.0,97605.0,99774.0,101943.0,104112.0,106281.0,108450.0,110619.0,112788.0,114957.0,117126.0,119295.0,121464.0,123633.0,125802.0,127971.0,130140.0,132309.0,134478.0,136647.0,138816.0,140985.0,143154.0,145323.0,147492.0,149661.0,151830.0,153999.0,156168.0,158337.0,160506.0,162675.0,164844.0,167013.0,169182.0,171351.0,173520.0,175689.0,177858.0,180027.0,182196.0,184365.0,186534.0,188703.0,190872.0,193041.0,195210.0,197379.0,199548.0,201717.0,203886.0,206055.0,208224.0,210393.0,212562.0,214731.0,216900.0],"times":[944785.0,1845299.0,2758235.0,3703668.0,4621616.0,5868235.0,6902770.0,8095653.0,9044655.0,9928806.0,10700850.0,11526107.0,12389286.0,13639870.0,14354207.0,15010893.0,15873842.0,16778945.0,18755393.0,19870190.0,20173074.0,21702525.0,24030346.0,25578102.0,24430008.0,25483008.0,26459678.0,28155378.0,29484417.0,29430183.0,30721622.0,31285102.0,32060239.0,33095727.0,34605853.0,36774632.0,36524819.0,37721591.0,38732748.0,39054481.0,40736427.0,45410967.0,42474447.0,42262371.0,41969421.0,42209122.0,42940552.0,44074027.0,45966183.0,46624221.0,47515827.0,48158979.0,49017179.0,52255840.0,53405874.0,54033601.0,53877451.0,54333255.0,56624406.0,56536638.0,57164543.0,59234100.0,60051681.0,64367642.0,63551335.0,65438614.0,66848656.0,67370669.0,66655524.0,68949695.0,68618418.0,67269673.0,68150357.0,70425609.0,73988385.0,73657800.0,75033511.0,75269466.0,79346816.0,77186046.0,77134749.0,76921660.0,76481652.0,89650675.0,84414385.0,86092594.0,93456714.0,107403305.0,90996256.0,95689334.0,97896685.0,99541659.0,90348662.0,88824380.0,89480266.0,99691841.0,109430103.0,109051893.0,109758647.0,109615167.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/90/base/tukey.json: -------------------------------------------------------------------------------- 1 | [368.38668539186074,402.0129391861259,491.6829493041663,525.3092030984315] -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/90/change/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.023885995543613137,"upper_bound":0.011609300923124037},"point_estimate":-0.006112426067504062,"standard_error":0.009073830753157685},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.007792156974591347,"upper_bound":0.03263870658892206},"point_estimate":0.02108938506665159,"standard_error":0.006048575302812638}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/90/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"Path.join","value_str":"90","throughput":null,"full_id":"exists/Path.join/90","directory_name":"exists/Path.join/90","title":"exists/Path.join/90"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/90/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":448.56633170946526,"upper_bound":458.19005730440074},"point_estimate":453.18221972049554,"standard_error":2.4491952644738926},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":445.23968312481554,"upper_bound":454.1243166699598},"point_estimate":449.22489866058334,"standard_error":1.9623395334576343},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":11.971566538792914,"upper_bound":23.1667431275143},"point_estimate":17.115929176216945,"standard_error":2.9547753577068625},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":453.432778295893,"upper_bound":471.54034838180127},"point_estimate":462.5008911769978,"standard_error":4.629157859640346},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.823680741009603,"upper_bound":29.936012411184613},"point_estimate":24.462977069282843,"standard_error":2.860703590314593}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/90/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2169.0,4338.0,6507.0,8676.0,10845.0,13014.0,15183.0,17352.0,19521.0,21690.0,23859.0,26028.0,28197.0,30366.0,32535.0,34704.0,36873.0,39042.0,41211.0,43380.0,45549.0,47718.0,49887.0,52056.0,54225.0,56394.0,58563.0,60732.0,62901.0,65070.0,67239.0,69408.0,71577.0,73746.0,75915.0,78084.0,80253.0,82422.0,84591.0,86760.0,88929.0,91098.0,93267.0,95436.0,97605.0,99774.0,101943.0,104112.0,106281.0,108450.0,110619.0,112788.0,114957.0,117126.0,119295.0,121464.0,123633.0,125802.0,127971.0,130140.0,132309.0,134478.0,136647.0,138816.0,140985.0,143154.0,145323.0,147492.0,149661.0,151830.0,153999.0,156168.0,158337.0,160506.0,162675.0,164844.0,167013.0,169182.0,171351.0,173520.0,175689.0,177858.0,180027.0,182196.0,184365.0,186534.0,188703.0,190872.0,193041.0,195210.0,197379.0,199548.0,201717.0,203886.0,206055.0,208224.0,210393.0,212562.0,214731.0,216900.0],"times":[944785.0,1845299.0,2758235.0,3703668.0,4621616.0,5868235.0,6902770.0,8095653.0,9044655.0,9928806.0,10700850.0,11526107.0,12389286.0,13639870.0,14354207.0,15010893.0,15873842.0,16778945.0,18755393.0,19870190.0,20173074.0,21702525.0,24030346.0,25578102.0,24430008.0,25483008.0,26459678.0,28155378.0,29484417.0,29430183.0,30721622.0,31285102.0,32060239.0,33095727.0,34605853.0,36774632.0,36524819.0,37721591.0,38732748.0,39054481.0,40736427.0,45410967.0,42474447.0,42262371.0,41969421.0,42209122.0,42940552.0,44074027.0,45966183.0,46624221.0,47515827.0,48158979.0,49017179.0,52255840.0,53405874.0,54033601.0,53877451.0,54333255.0,56624406.0,56536638.0,57164543.0,59234100.0,60051681.0,64367642.0,63551335.0,65438614.0,66848656.0,67370669.0,66655524.0,68949695.0,68618418.0,67269673.0,68150357.0,70425609.0,73988385.0,73657800.0,75033511.0,75269466.0,79346816.0,77186046.0,77134749.0,76921660.0,76481652.0,89650675.0,84414385.0,86092594.0,93456714.0,107403305.0,90996256.0,95689334.0,97896685.0,99541659.0,90348662.0,88824380.0,89480266.0,99691841.0,109430103.0,109051893.0,109758647.0,109615167.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/Path.join/90/new/tukey.json: -------------------------------------------------------------------------------- 1 | [368.38668539186074,402.0129391861259,491.6829493041663,525.3092030984315] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/10/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"10","throughput":null,"full_id":"exists/with_paths!/10","directory_name":"exists/with_paths!/10","title":"exists/with_paths!/10"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/10/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":275.2958343379972,"upper_bound":277.9893329851125},"point_estimate":276.5814818896357,"standard_error":0.6870559392599956},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":273.08510247461095,"upper_bound":275.02559109874824},"point_estimate":273.84432118212106,"standard_error":0.4291738187577993},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.1499209045177414,"upper_bound":4.339230696428733},"point_estimate":2.797259556740923,"standard_error":0.5762435789905984},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":274.11670955274377,"upper_bound":275.6986484572},"point_estimate":274.85260161632795,"standard_error":0.40337393313221176},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":5.188163913332238,"upper_bound":8.363388645985408},"point_estimate":6.908606195971781,"standard_error":0.8112858098854905}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/10/base/tukey.json: -------------------------------------------------------------------------------- 1 | [254.46895127355532,263.35063546524316,287.0351266430773,295.9168108347651] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/10/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"10","throughput":null,"full_id":"exists/with_paths!/10","directory_name":"exists/with_paths!/10","title":"exists/with_paths!/10"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/10/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":275.2958343379972,"upper_bound":277.9893329851125},"point_estimate":276.5814818896357,"standard_error":0.6870559392599956},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":273.08510247461095,"upper_bound":275.02559109874824},"point_estimate":273.84432118212106,"standard_error":0.4291738187577993},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.1499209045177414,"upper_bound":4.339230696428733},"point_estimate":2.797259556740923,"standard_error":0.5762435789905984},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":274.11670955274377,"upper_bound":275.6986484572},"point_estimate":274.85260161632795,"standard_error":0.40337393313221176},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":5.188163913332238,"upper_bound":8.363388645985408},"point_estimate":6.908606195971781,"standard_error":0.8112858098854905}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/10/new/tukey.json: -------------------------------------------------------------------------------- 1 | [254.46895127355532,263.35063546524316,287.0351266430773,295.9168108347651] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/100/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"100","throughput":null,"full_id":"exists/with_paths!/100","directory_name":"exists/with_paths!/100","title":"exists/with_paths!/100"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/100/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":357.79421924706054,"upper_bound":360.5673846444702},"point_estimate":359.12280606536297,"standard_error":0.7038490176387945},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":355.9997090510075,"upper_bound":358.22596090138154},"point_estimate":357.1606357277652,"standard_error":0.5681992989441582},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.3142062326392705,"upper_bound":6.324425712315583},"point_estimate":4.341413154769382,"standard_error":0.7909248189416884},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":356.02142458221124,"upper_bound":358.18287902024446},"point_estimate":357.062169599899,"standard_error":0.5532610056377375},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":5.468579823776886,"upper_bound":8.47103674745412},"point_estimate":7.065188345034775,"standard_error":0.767707765711878}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/100/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2734.0,5468.0,8202.0,10936.0,13670.0,16404.0,19138.0,21872.0,24606.0,27340.0,30074.0,32808.0,35542.0,38276.0,41010.0,43744.0,46478.0,49212.0,51946.0,54680.0,57414.0,60148.0,62882.0,65616.0,68350.0,71084.0,73818.0,76552.0,79286.0,82020.0,84754.0,87488.0,90222.0,92956.0,95690.0,98424.0,101158.0,103892.0,106626.0,109360.0,112094.0,114828.0,117562.0,120296.0,123030.0,125764.0,128498.0,131232.0,133966.0,136700.0,139434.0,142168.0,144902.0,147636.0,150370.0,153104.0,155838.0,158572.0,161306.0,164040.0,166774.0,169508.0,172242.0,174976.0,177710.0,180444.0,183178.0,185912.0,188646.0,191380.0,194114.0,196848.0,199582.0,202316.0,205050.0,207784.0,210518.0,213252.0,215986.0,218720.0,221454.0,224188.0,226922.0,229656.0,232390.0,235124.0,237858.0,240592.0,243326.0,246060.0,248794.0,251528.0,254262.0,256996.0,259730.0,262464.0,265198.0,267932.0,270666.0,273400.0],"times":[983330.0,1934065.0,2945092.0,3933583.0,4961732.0,6216529.0,7304258.0,8446575.0,9354650.0,10251114.0,11148727.0,12143606.0,13234332.0,13882969.0,14669721.0,15825256.0,16737639.0,18137474.0,18860806.0,19433468.0,20936837.0,21259501.0,22489628.0,23032727.0,24082885.0,24889912.0,26635097.0,27484213.0,28372500.0,29123526.0,29864503.0,32004296.0,33398797.0,33449567.0,34418986.0,35079660.0,35992822.0,36606684.0,38035734.0,39096518.0,39993037.0,40871832.0,41605195.0,42455867.0,44771435.0,45173323.0,45317386.0,46525128.0,48007540.0,48558800.0,49283942.0,50254054.0,52589871.0,52887464.0,53866014.0,56699778.0,57272958.0,56659094.0,56740970.0,57612582.0,58436859.0,60456068.0,61258692.0,63343957.0,63564145.0,64209545.0,65104895.0,65691774.0,67395521.0,69279032.0,68936455.0,72578551.0,71204081.0,72016205.0,74637682.0,74810727.0,73903668.0,75494390.0,76978096.0,78096614.0,79330444.0,79524058.0,80562345.0,80782541.0,85174692.0,83798659.0,83764074.0,85650682.0,86464484.0,87634048.0,88969490.0,89263179.0,90485508.0,90769421.0,93517904.0,95910500.0,95298637.0,95205433.0,95168938.0,97060595.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/100/base/tukey.json: -------------------------------------------------------------------------------- 1 | [334.44324352415185,344.7120111024277,372.0953913111633,382.3641588894392] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/100/change/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.10329395729735642,"upper_bound":-0.08202891208106777},"point_estimate":-0.09261066137312335,"standard_error":0.005424035527706388},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.0902256558988169,"upper_bound":-0.07605044392348444},"point_estimate":-0.08385480650271149,"standard_error":0.0033221626648551996}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/100/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"100","throughput":null,"full_id":"exists/with_paths!/100","directory_name":"exists/with_paths!/100","title":"exists/with_paths!/100"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/100/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":357.79421924706054,"upper_bound":360.5673846444702},"point_estimate":359.12280606536297,"standard_error":0.7038490176387945},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":355.9997090510075,"upper_bound":358.22596090138154},"point_estimate":357.1606357277652,"standard_error":0.5681992989441582},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.3142062326392705,"upper_bound":6.324425712315583},"point_estimate":4.341413154769382,"standard_error":0.7909248189416884},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":356.02142458221124,"upper_bound":358.18287902024446},"point_estimate":357.062169599899,"standard_error":0.5532610056377375},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":5.468579823776886,"upper_bound":8.47103674745412},"point_estimate":7.065188345034775,"standard_error":0.767707765711878}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/100/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2734.0,5468.0,8202.0,10936.0,13670.0,16404.0,19138.0,21872.0,24606.0,27340.0,30074.0,32808.0,35542.0,38276.0,41010.0,43744.0,46478.0,49212.0,51946.0,54680.0,57414.0,60148.0,62882.0,65616.0,68350.0,71084.0,73818.0,76552.0,79286.0,82020.0,84754.0,87488.0,90222.0,92956.0,95690.0,98424.0,101158.0,103892.0,106626.0,109360.0,112094.0,114828.0,117562.0,120296.0,123030.0,125764.0,128498.0,131232.0,133966.0,136700.0,139434.0,142168.0,144902.0,147636.0,150370.0,153104.0,155838.0,158572.0,161306.0,164040.0,166774.0,169508.0,172242.0,174976.0,177710.0,180444.0,183178.0,185912.0,188646.0,191380.0,194114.0,196848.0,199582.0,202316.0,205050.0,207784.0,210518.0,213252.0,215986.0,218720.0,221454.0,224188.0,226922.0,229656.0,232390.0,235124.0,237858.0,240592.0,243326.0,246060.0,248794.0,251528.0,254262.0,256996.0,259730.0,262464.0,265198.0,267932.0,270666.0,273400.0],"times":[983330.0,1934065.0,2945092.0,3933583.0,4961732.0,6216529.0,7304258.0,8446575.0,9354650.0,10251114.0,11148727.0,12143606.0,13234332.0,13882969.0,14669721.0,15825256.0,16737639.0,18137474.0,18860806.0,19433468.0,20936837.0,21259501.0,22489628.0,23032727.0,24082885.0,24889912.0,26635097.0,27484213.0,28372500.0,29123526.0,29864503.0,32004296.0,33398797.0,33449567.0,34418986.0,35079660.0,35992822.0,36606684.0,38035734.0,39096518.0,39993037.0,40871832.0,41605195.0,42455867.0,44771435.0,45173323.0,45317386.0,46525128.0,48007540.0,48558800.0,49283942.0,50254054.0,52589871.0,52887464.0,53866014.0,56699778.0,57272958.0,56659094.0,56740970.0,57612582.0,58436859.0,60456068.0,61258692.0,63343957.0,63564145.0,64209545.0,65104895.0,65691774.0,67395521.0,69279032.0,68936455.0,72578551.0,71204081.0,72016205.0,74637682.0,74810727.0,73903668.0,75494390.0,76978096.0,78096614.0,79330444.0,79524058.0,80562345.0,80782541.0,85174692.0,83798659.0,83764074.0,85650682.0,86464484.0,87634048.0,88969490.0,89263179.0,90485508.0,90769421.0,93517904.0,95910500.0,95298637.0,95205433.0,95168938.0,97060595.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/100/new/tukey.json: -------------------------------------------------------------------------------- 1 | [334.44324352415185,344.7120111024277,372.0953913111633,382.3641588894392] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/110/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"110","throughput":null,"full_id":"exists/with_paths!/110","directory_name":"exists/with_paths!/110","title":"exists/with_paths!/110"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/110/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":380.3480447409625,"upper_bound":387.98588703045664},"point_estimate":384.01564118630705,"standard_error":1.9508879566694812},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":373.73529139328446,"upper_bound":376.1736269467918},"point_estimate":374.7384882953196,"standard_error":0.6328308769172439},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.5880631981976348,"upper_bound":7.431339553775869},"point_estimate":5.103054951901309,"standard_error":0.9654954636417902},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":376.87587759237476,"upper_bound":382.297345260208},"point_estimate":379.33249418748795,"standard_error":1.3842878984159532},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":15.693566986940654,"upper_bound":22.69631970961968},"point_estimate":19.619140095168554,"standard_error":1.7846546013313658}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/110/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2591.0,5182.0,7773.0,10364.0,12955.0,15546.0,18137.0,20728.0,23319.0,25910.0,28501.0,31092.0,33683.0,36274.0,38865.0,41456.0,44047.0,46638.0,49229.0,51820.0,54411.0,57002.0,59593.0,62184.0,64775.0,67366.0,69957.0,72548.0,75139.0,77730.0,80321.0,82912.0,85503.0,88094.0,90685.0,93276.0,95867.0,98458.0,101049.0,103640.0,106231.0,108822.0,111413.0,114004.0,116595.0,119186.0,121777.0,124368.0,126959.0,129550.0,132141.0,134732.0,137323.0,139914.0,142505.0,145096.0,147687.0,150278.0,152869.0,155460.0,158051.0,160642.0,163233.0,165824.0,168415.0,171006.0,173597.0,176188.0,178779.0,181370.0,183961.0,186552.0,189143.0,191734.0,194325.0,196916.0,199507.0,202098.0,204689.0,207280.0,209871.0,212462.0,215053.0,217644.0,220235.0,222826.0,225417.0,228008.0,230599.0,233190.0,235781.0,238372.0,240963.0,243554.0,246145.0,248736.0,251327.0,253918.0,256509.0,259100.0],"times":[983530.0,1912479.0,2915243.0,3830428.0,4797811.0,5936386.0,6890448.0,7920370.0,8843448.0,9731298.0,10628021.0,11664549.0,12659804.0,13470508.0,14395367.0,15452600.0,16460725.0,17365614.0,18422423.0,19269308.0,20246310.0,21278277.0,22186175.0,23307860.0,24217263.0,25219008.0,26220145.0,27782744.0,31546034.0,33884212.0,35027518.0,36448258.0,37302170.0,38176409.0,38376693.0,40372684.0,40181577.0,41583404.0,42515061.0,44380645.0,44652694.0,44759466.0,43309259.0,42832930.0,43512211.0,44805705.0,45718454.0,46394348.0,47379528.0,48417407.0,49953840.0,51290354.0,51617003.0,51953009.0,53314355.0,54623857.0,55317688.0,56291586.0,57002125.0,58966745.0,63956953.0,65568307.0,65412882.0,66329832.0,68890489.0,68687063.0,70059559.0,68172064.0,67592439.0,67221574.0,68402780.0,69405965.0,69756909.0,71837599.0,74202328.0,74553791.0,73901515.0,74888983.0,75760721.0,76824137.0,78185549.0,79213005.0,81040472.0,81261655.0,82452862.0,82592582.0,83692039.0,87451669.0,85936039.0,86209837.0,87549383.0,88479467.0,89744470.0,91792754.0,92119890.0,92482528.0,93241438.0,94358536.0,97858673.0,96222685.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/110/base/tukey.json: -------------------------------------------------------------------------------- 1 | [342.0201496280723,357.13314086206196,397.4344508193676,412.5474420533572] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/110/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"110","throughput":null,"full_id":"exists/with_paths!/110","directory_name":"exists/with_paths!/110","title":"exists/with_paths!/110"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/110/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":380.3480447409625,"upper_bound":387.98588703045664},"point_estimate":384.01564118630705,"standard_error":1.9508879566694812},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":373.73529139328446,"upper_bound":376.1736269467918},"point_estimate":374.7384882953196,"standard_error":0.6328308769172439},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.5880631981976348,"upper_bound":7.431339553775869},"point_estimate":5.103054951901309,"standard_error":0.9654954636417902},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":376.87587759237476,"upper_bound":382.297345260208},"point_estimate":379.33249418748795,"standard_error":1.3842878984159532},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":15.693566986940654,"upper_bound":22.69631970961968},"point_estimate":19.619140095168554,"standard_error":1.7846546013313658}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/110/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2591.0,5182.0,7773.0,10364.0,12955.0,15546.0,18137.0,20728.0,23319.0,25910.0,28501.0,31092.0,33683.0,36274.0,38865.0,41456.0,44047.0,46638.0,49229.0,51820.0,54411.0,57002.0,59593.0,62184.0,64775.0,67366.0,69957.0,72548.0,75139.0,77730.0,80321.0,82912.0,85503.0,88094.0,90685.0,93276.0,95867.0,98458.0,101049.0,103640.0,106231.0,108822.0,111413.0,114004.0,116595.0,119186.0,121777.0,124368.0,126959.0,129550.0,132141.0,134732.0,137323.0,139914.0,142505.0,145096.0,147687.0,150278.0,152869.0,155460.0,158051.0,160642.0,163233.0,165824.0,168415.0,171006.0,173597.0,176188.0,178779.0,181370.0,183961.0,186552.0,189143.0,191734.0,194325.0,196916.0,199507.0,202098.0,204689.0,207280.0,209871.0,212462.0,215053.0,217644.0,220235.0,222826.0,225417.0,228008.0,230599.0,233190.0,235781.0,238372.0,240963.0,243554.0,246145.0,248736.0,251327.0,253918.0,256509.0,259100.0],"times":[983530.0,1912479.0,2915243.0,3830428.0,4797811.0,5936386.0,6890448.0,7920370.0,8843448.0,9731298.0,10628021.0,11664549.0,12659804.0,13470508.0,14395367.0,15452600.0,16460725.0,17365614.0,18422423.0,19269308.0,20246310.0,21278277.0,22186175.0,23307860.0,24217263.0,25219008.0,26220145.0,27782744.0,31546034.0,33884212.0,35027518.0,36448258.0,37302170.0,38176409.0,38376693.0,40372684.0,40181577.0,41583404.0,42515061.0,44380645.0,44652694.0,44759466.0,43309259.0,42832930.0,43512211.0,44805705.0,45718454.0,46394348.0,47379528.0,48417407.0,49953840.0,51290354.0,51617003.0,51953009.0,53314355.0,54623857.0,55317688.0,56291586.0,57002125.0,58966745.0,63956953.0,65568307.0,65412882.0,66329832.0,68890489.0,68687063.0,70059559.0,68172064.0,67592439.0,67221574.0,68402780.0,69405965.0,69756909.0,71837599.0,74202328.0,74553791.0,73901515.0,74888983.0,75760721.0,76824137.0,78185549.0,79213005.0,81040472.0,81261655.0,82452862.0,82592582.0,83692039.0,87451669.0,85936039.0,86209837.0,87549383.0,88479467.0,89744470.0,91792754.0,92119890.0,92482528.0,93241438.0,94358536.0,97858673.0,96222685.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/110/new/tukey.json: -------------------------------------------------------------------------------- 1 | [342.0201496280723,357.13314086206196,397.4344508193676,412.5474420533572] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/20/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"20","throughput":null,"full_id":"exists/with_paths!/20","directory_name":"exists/with_paths!/20","title":"exists/with_paths!/20"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/20/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":297.67240145146883,"upper_bound":300.83865853473895},"point_estimate":299.15795966324384,"standard_error":0.8076533118984128},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":295.53827481840193,"upper_bound":297.9277580205811},"point_estimate":296.3207920880217,"standard_error":0.6989020002606887},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.5380732384214877,"upper_bound":4.835945788595271},"point_estimate":3.223731491003088,"standard_error":0.572061118360344},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":296.5347979951506,"upper_bound":298.4963780134474},"point_estimate":297.4523636748771,"standard_error":0.5018371654004531},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":5.770909278488591,"upper_bound":10.0842959698733},"point_estimate":8.12508358072913,"standard_error":1.101414527137406}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/20/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[3304.0,6608.0,9912.0,13216.0,16520.0,19824.0,23128.0,26432.0,29736.0,33040.0,36344.0,39648.0,42952.0,46256.0,49560.0,52864.0,56168.0,59472.0,62776.0,66080.0,69384.0,72688.0,75992.0,79296.0,82600.0,85904.0,89208.0,92512.0,95816.0,99120.0,102424.0,105728.0,109032.0,112336.0,115640.0,118944.0,122248.0,125552.0,128856.0,132160.0,135464.0,138768.0,142072.0,145376.0,148680.0,151984.0,155288.0,158592.0,161896.0,165200.0,168504.0,171808.0,175112.0,178416.0,181720.0,185024.0,188328.0,191632.0,194936.0,198240.0,201544.0,204848.0,208152.0,211456.0,214760.0,218064.0,221368.0,224672.0,227976.0,231280.0,234584.0,237888.0,241192.0,244496.0,247800.0,251104.0,254408.0,257712.0,261016.0,264320.0,267624.0,270928.0,274232.0,277536.0,280840.0,284144.0,287448.0,290752.0,294056.0,297360.0,300664.0,303968.0,307272.0,310576.0,313880.0,317184.0,320488.0,323792.0,327096.0,330400.0],"times":[978359.0,1942603.0,2918092.0,3909768.0,4936304.0,6386475.0,7572855.0,8779228.0,9686254.0,10520881.0,11816609.0,12694571.0,13179828.0,14061677.0,14961538.0,15864268.0,16715408.0,17356559.0,18793413.0,19524425.0,20498937.0,21232400.0,22191886.0,23232365.0,24420882.0,25276939.0,26273465.0,27312988.0,28892512.0,31023078.0,30939747.0,31499306.0,31978421.0,32719355.0,33729747.0,34840487.0,35887630.0,37037388.0,38534483.0,39393342.0,40416896.0,41061712.0,41868378.0,42956519.0,44123190.0,45211643.0,46338912.0,47383371.0,48139130.0,48606804.0,49543379.0,51210103.0,52180331.0,55698416.0,55057927.0,54658134.0,55342455.0,56354871.0,57622221.0,58420276.0,60169198.0,60590583.0,63077602.0,63619934.0,63445634.0,64085244.0,65082047.0,66621558.0,67450071.0,69675382.0,71534018.0,70239151.0,71387917.0,71969275.0,72634793.0,74912046.0,75060540.0,75965609.0,77887265.0,79275433.0,80892923.0,80450984.0,81682484.0,85180055.0,82602489.0,83191093.0,85345458.0,86564663.0,86899031.0,87822421.0,90048299.0,89417148.0,91789598.0,93010057.0,96705359.0,93892920.0,94563948.0,95269201.0,97453173.0,97645846.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/20/base/tukey.json: -------------------------------------------------------------------------------- 1 | [280.158665255954,287.4047373002037,306.72759608486956,313.9736681291193] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/20/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"20","throughput":null,"full_id":"exists/with_paths!/20","directory_name":"exists/with_paths!/20","title":"exists/with_paths!/20"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/20/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":297.67240145146883,"upper_bound":300.83865853473895},"point_estimate":299.15795966324384,"standard_error":0.8076533118984128},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":295.53827481840193,"upper_bound":297.9277580205811},"point_estimate":296.3207920880217,"standard_error":0.6989020002606887},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.5380732384214877,"upper_bound":4.835945788595271},"point_estimate":3.223731491003088,"standard_error":0.572061118360344},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":296.5347979951506,"upper_bound":298.4963780134474},"point_estimate":297.4523636748771,"standard_error":0.5018371654004531},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":5.770909278488591,"upper_bound":10.0842959698733},"point_estimate":8.12508358072913,"standard_error":1.101414527137406}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/20/new/tukey.json: -------------------------------------------------------------------------------- 1 | [280.158665255954,287.4047373002037,306.72759608486956,313.9736681291193] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/30/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"30","throughput":null,"full_id":"exists/with_paths!/30","directory_name":"exists/with_paths!/30","title":"exists/with_paths!/30"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/30/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":316.75542949290275,"upper_bound":320.3950517555735},"point_estimate":318.45501807067626,"standard_error":0.9323880412015254},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":314.75629775611105,"upper_bound":316.7208011789925},"point_estimate":315.85019506508,"standard_error":0.4614109606598139},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.8237549297432696,"upper_bound":5.094757516781862},"point_estimate":3.5417263168521758,"standard_error":0.6058843651612661},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":315.4135567819259,"upper_bound":317.92313353472423},"point_estimate":316.5866742955814,"standard_error":0.6422119348153796},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.164586939383195,"upper_bound":12.107256922384986},"point_estimate":9.374952348080761,"standard_error":1.5242492476334386}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/30/base/tukey.json: -------------------------------------------------------------------------------- 1 | [298.70131062769065,306.1372452375639,325.96640419722587,333.4023388070991] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/30/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"30","throughput":null,"full_id":"exists/with_paths!/30","directory_name":"exists/with_paths!/30","title":"exists/with_paths!/30"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/30/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":316.75542949290275,"upper_bound":320.3950517555735},"point_estimate":318.45501807067626,"standard_error":0.9323880412015254},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":314.75629775611105,"upper_bound":316.7208011789925},"point_estimate":315.85019506508,"standard_error":0.4614109606598139},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.8237549297432696,"upper_bound":5.094757516781862},"point_estimate":3.5417263168521758,"standard_error":0.6058843651612661},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":315.4135567819259,"upper_bound":317.92313353472423},"point_estimate":316.5866742955814,"standard_error":0.6422119348153796},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.164586939383195,"upper_bound":12.107256922384986},"point_estimate":9.374952348080761,"standard_error":1.5242492476334386}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/30/new/tukey.json: -------------------------------------------------------------------------------- 1 | [298.70131062769065,306.1372452375639,325.96640419722587,333.4023388070991] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/40/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"40","throughput":null,"full_id":"exists/with_paths!/40","directory_name":"exists/with_paths!/40","title":"exists/with_paths!/40"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/40/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":314.1584448229485,"upper_bound":317.99972090766437},"point_estimate":315.992083450535,"standard_error":0.9763321122681203},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":311.7086849390663,"upper_bound":313.61299157885645},"point_estimate":312.3784317380549,"standard_error":0.4636252728886247},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.254805193179777,"upper_bound":5.401768613766477},"point_estimate":4.207480475535389,"standard_error":0.5333017165775763},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":312.24511989866073,"upper_bound":314.96786965607714},"point_estimate":313.5398586537449,"standard_error":0.6934851006434966},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.420637242080554,"upper_bound":11.720841458016448},"point_estimate":9.81104265867344,"standard_error":1.0926215702911666}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/40/base/tukey.json: -------------------------------------------------------------------------------- 1 | [290.73022293583466,300.40753776677457,326.213710649281,335.8910254802209] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/40/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"40","throughput":null,"full_id":"exists/with_paths!/40","directory_name":"exists/with_paths!/40","title":"exists/with_paths!/40"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/40/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":314.1584448229485,"upper_bound":317.99972090766437},"point_estimate":315.992083450535,"standard_error":0.9763321122681203},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":311.7086849390663,"upper_bound":313.61299157885645},"point_estimate":312.3784317380549,"standard_error":0.4636252728886247},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.254805193179777,"upper_bound":5.401768613766477},"point_estimate":4.207480475535389,"standard_error":0.5333017165775763},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":312.24511989866073,"upper_bound":314.96786965607714},"point_estimate":313.5398586537449,"standard_error":0.6934851006434966},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.420637242080554,"upper_bound":11.720841458016448},"point_estimate":9.81104265867344,"standard_error":1.0926215702911666}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/40/new/tukey.json: -------------------------------------------------------------------------------- 1 | [290.73022293583466,300.40753776677457,326.213710649281,335.8910254802209] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/50/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"50","throughput":null,"full_id":"exists/with_paths!/50","directory_name":"exists/with_paths!/50","title":"exists/with_paths!/50"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/50/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":326.5181965252912,"upper_bound":329.8085580213834},"point_estimate":328.09528879170153,"standard_error":0.8447001870351164},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":323.93989233630225,"upper_bound":325.8595281734559},"point_estimate":324.2671579114175,"standard_error":0.625153231791325},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.7380313050164657,"upper_bound":6.079581209194714},"point_estimate":4.034245157163208,"standard_error":0.8909921318210023},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":324.5960127665579,"upper_bound":326.8705498492236},"point_estimate":325.66461257541556,"standard_error":0.5766271863403433},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.671009640342952,"upper_bound":9.959711340096353},"point_estimate":8.462638764546869,"standard_error":0.8405208184531243}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/50/base/tukey.json: -------------------------------------------------------------------------------- 1 | [296.41622712734943,309.6134636333784,344.8060943161222,358.0033308221511] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/50/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"50","throughput":null,"full_id":"exists/with_paths!/50","directory_name":"exists/with_paths!/50","title":"exists/with_paths!/50"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/50/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":326.5181965252912,"upper_bound":329.8085580213834},"point_estimate":328.09528879170153,"standard_error":0.8447001870351164},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":323.93989233630225,"upper_bound":325.8595281734559},"point_estimate":324.2671579114175,"standard_error":0.625153231791325},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.7380313050164657,"upper_bound":6.079581209194714},"point_estimate":4.034245157163208,"standard_error":0.8909921318210023},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":324.5960127665579,"upper_bound":326.8705498492236},"point_estimate":325.66461257541556,"standard_error":0.5766271863403433},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.671009640342952,"upper_bound":9.959711340096353},"point_estimate":8.462638764546869,"standard_error":0.8405208184531243}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/50/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[3005.0,6010.0,9015.0,12020.0,15025.0,18030.0,21035.0,24040.0,27045.0,30050.0,33055.0,36060.0,39065.0,42070.0,45075.0,48080.0,51085.0,54090.0,57095.0,60100.0,63105.0,66110.0,69115.0,72120.0,75125.0,78130.0,81135.0,84140.0,87145.0,90150.0,93155.0,96160.0,99165.0,102170.0,105175.0,108180.0,111185.0,114190.0,117195.0,120200.0,123205.0,126210.0,129215.0,132220.0,135225.0,138230.0,141235.0,144240.0,147245.0,150250.0,153255.0,156260.0,159265.0,162270.0,165275.0,168280.0,171285.0,174290.0,177295.0,180300.0,183305.0,186310.0,189315.0,192320.0,195325.0,198330.0,201335.0,204340.0,207345.0,210350.0,213355.0,216360.0,219365.0,222370.0,225375.0,228380.0,231385.0,234390.0,237395.0,240400.0,243405.0,246410.0,249415.0,252420.0,255425.0,258430.0,261435.0,264440.0,267445.0,270450.0,273455.0,276460.0,279465.0,282470.0,285475.0,288480.0,291485.0,294490.0,297495.0,300500.0],"times":[964155.0,1944300.0,2889548.0,3899032.0,4867334.0,6296712.0,7440653.0,8504222.0,9473975.0,10360959.0,11348180.0,12346506.0,13207504.0,13796595.0,15010220.0,15582350.0,16520120.0,17693469.0,18502618.0,19506035.0,20209803.0,21361020.0,22112843.0,23210365.0,24251187.0,25869943.0,26234201.0,27519661.0,30266919.0,32099138.0,31911032.0,32280992.0,32268544.0,32867161.0,33622240.0,34500308.0,35907334.0,37570141.0,39583150.0,39989937.0,40145784.0,40911680.0,41866810.0,43946791.0,46278942.0,46380879.0,45505837.0,46391590.0,47323820.0,49376147.0,49665746.0,50566370.0,51900728.0,55231263.0,53853621.0,54845260.0,55808051.0,56458376.0,58310027.0,58657705.0,61100854.0,60336030.0,60897519.0,62250241.0,62924412.0,66011602.0,66845398.0,67102517.0,67064911.0,70673971.0,70182522.0,69317851.0,70329219.0,71783121.0,73034138.0,74544361.0,74770647.0,75494142.0,76265406.0,77191015.0,78579145.0,81678723.0,82078321.0,84233750.0,82742347.0,82963677.0,84351152.0,85442292.0,86398838.0,88250874.0,88728298.0,88753025.0,89534677.0,91518581.0,95590769.0,93847927.0,94438787.0,95058478.0,95873893.0,97738797.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/50/new/tukey.json: -------------------------------------------------------------------------------- 1 | [296.41622712734943,309.6134636333784,344.8060943161222,358.0033308221511] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/60/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"60","throughput":null,"full_id":"exists/with_paths!/60","directory_name":"exists/with_paths!/60","title":"exists/with_paths!/60"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/60/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":329.30663761635196,"upper_bound":332.38537608181906},"point_estimate":330.77430564416665,"standard_error":0.785640638330864},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":326.9960838313465,"upper_bound":328.48443385148005},"point_estimate":327.74864746052765,"standard_error":0.40160402017923175},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.2931605660967076,"upper_bound":4.773719366542216},"point_estimate":3.474867579774762,"standard_error":0.6684503048808648},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":327.898764043609,"upper_bound":330.52079789201497},"point_estimate":329.13073498205654,"standard_error":0.6735304629989363},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.002914978980819,"upper_bound":9.487528954728019},"point_estimate":7.8913355687537,"standard_error":0.890200011727452}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/60/base/tukey.json: -------------------------------------------------------------------------------- 1 | [306.0182046780093,315.9731217065702,342.51956711606607,352.474484144627] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/60/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"60","throughput":null,"full_id":"exists/with_paths!/60","directory_name":"exists/with_paths!/60","title":"exists/with_paths!/60"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/60/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":329.30663761635196,"upper_bound":332.38537608181906},"point_estimate":330.77430564416665,"standard_error":0.785640638330864},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":326.9960838313465,"upper_bound":328.48443385148005},"point_estimate":327.74864746052765,"standard_error":0.40160402017923175},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.2931605660967076,"upper_bound":4.773719366542216},"point_estimate":3.474867579774762,"standard_error":0.6684503048808648},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":327.898764043609,"upper_bound":330.52079789201497},"point_estimate":329.13073498205654,"standard_error":0.6735304629989363},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.002914978980819,"upper_bound":9.487528954728019},"point_estimate":7.8913355687537,"standard_error":0.890200011727452}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/60/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2986.0,5972.0,8958.0,11944.0,14930.0,17916.0,20902.0,23888.0,26874.0,29860.0,32846.0,35832.0,38818.0,41804.0,44790.0,47776.0,50762.0,53748.0,56734.0,59720.0,62706.0,65692.0,68678.0,71664.0,74650.0,77636.0,80622.0,83608.0,86594.0,89580.0,92566.0,95552.0,98538.0,101524.0,104510.0,107496.0,110482.0,113468.0,116454.0,119440.0,122426.0,125412.0,128398.0,131384.0,134370.0,137356.0,140342.0,143328.0,146314.0,149300.0,152286.0,155272.0,158258.0,161244.0,164230.0,167216.0,170202.0,173188.0,176174.0,179160.0,182146.0,185132.0,188118.0,191104.0,194090.0,197076.0,200062.0,203048.0,206034.0,209020.0,212006.0,214992.0,217978.0,220964.0,223950.0,226936.0,229922.0,232908.0,235894.0,238880.0,241866.0,244852.0,247838.0,250824.0,253810.0,256796.0,259782.0,262768.0,265754.0,268740.0,271726.0,274712.0,277698.0,280684.0,283670.0,286656.0,289642.0,292628.0,295614.0,298600.0],"times":[980931.0,1925019.0,2909917.0,3875896.0,4970543.0,6344426.0,7495022.0,8563510.0,9504168.0,10482506.0,11269491.0,12535757.0,13329699.0,13892255.0,15163376.0,15799814.0,16635714.0,17751258.0,18394126.0,19597432.0,20392076.0,21425710.0,22291770.0,23392112.0,24156752.0,25405449.0,26430498.0,27287666.0,28213330.0,30103150.0,30773117.0,31902017.0,32331914.0,33208299.0,34042629.0,36043637.0,37473129.0,39130341.0,38586979.0,39178167.0,40046204.0,40893652.0,41696143.0,42818350.0,43691184.0,45110430.0,46794991.0,47457429.0,47947758.0,48747424.0,49635583.0,50716299.0,51852674.0,52446763.0,53215487.0,54293248.0,55669991.0,57411060.0,60673192.0,58943085.0,59404087.0,59732202.0,61239025.0,63853758.0,63985539.0,64775522.0,65449130.0,68799195.0,68235825.0,68199144.0,69206176.0,70332471.0,70953676.0,75620775.0,73640016.0,74143977.0,75525798.0,76465529.0,76790925.0,78329390.0,78834332.0,79882277.0,81303690.0,83758507.0,85828375.0,84759787.0,88087800.0,86059111.0,86198118.0,87552542.0,90749629.0,90044403.0,90694439.0,91753958.0,92300285.0,93148492.0,95324555.0,99896300.0,95835797.0,97310175.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/60/new/tukey.json: -------------------------------------------------------------------------------- 1 | [306.0182046780093,315.9731217065702,342.51956711606607,352.474484144627] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/70/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"70","throughput":null,"full_id":"exists/with_paths!/70","directory_name":"exists/with_paths!/70","title":"exists/with_paths!/70"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/70/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":342.5870158478904,"upper_bound":350.0555359534046},"point_estimate":346.2140492458846,"standard_error":1.9107495170113475},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":334.3916456793097,"upper_bound":345.2547005571031},"point_estimate":337.76736933853056,"standard_error":3.170101630691398},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.852867683228653,"upper_bound":21.00208502946252},"point_estimate":12.283411075766086,"standard_error":3.5901727456265857},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":342.9334851143437,"upper_bound":357.18223494081957},"point_estimate":349.92492687867923,"standard_error":3.6383396446863863},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":15.728008502012862,"upper_bound":22.409388947722736},"point_estimate":19.301607276507116,"standard_error":1.7018835344372698}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/70/base/tukey.json: -------------------------------------------------------------------------------- 1 | [253.77203537982587,292.39504370683085,395.38973257884413,434.0127409058491] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/70/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"70","throughput":null,"full_id":"exists/with_paths!/70","directory_name":"exists/with_paths!/70","title":"exists/with_paths!/70"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/70/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":342.5870158478904,"upper_bound":350.0555359534046},"point_estimate":346.2140492458846,"standard_error":1.9107495170113475},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":334.3916456793097,"upper_bound":345.2547005571031},"point_estimate":337.76736933853056,"standard_error":3.170101630691398},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.852867683228653,"upper_bound":21.00208502946252},"point_estimate":12.283411075766086,"standard_error":3.5901727456265857},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":342.9334851143437,"upper_bound":357.18223494081957},"point_estimate":349.92492687867923,"standard_error":3.6383396446863863},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":15.728008502012862,"upper_bound":22.409388947722736},"point_estimate":19.301607276507116,"standard_error":1.7018835344372698}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/70/new/tukey.json: -------------------------------------------------------------------------------- 1 | [253.77203537982587,292.39504370683085,395.38973257884413,434.0127409058491] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/80/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"80","throughput":null,"full_id":"exists/with_paths!/80","directory_name":"exists/with_paths!/80","title":"exists/with_paths!/80"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/80/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":341.6446874650146,"upper_bound":344.7454207919794},"point_estimate":343.1439377615493,"standard_error":0.7901258153967141},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":339.7690037682168,"upper_bound":341.57026531632016},"point_estimate":340.78318924246526,"standard_error":0.5527059948071418},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.3811854402278647,"upper_bound":6.3629786012264935},"point_estimate":4.628233119144099,"standard_error":0.7153045025674943},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":340.80278480467086,"upper_bound":343.58018618787247},"point_estimate":342.12037743927436,"standard_error":0.7124474738128397},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.277977190338955,"upper_bound":9.376716016709056},"point_estimate":7.933024530693677,"standard_error":0.7884525290629801}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/80/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2873.0,5746.0,8619.0,11492.0,14365.0,17238.0,20111.0,22984.0,25857.0,28730.0,31603.0,34476.0,37349.0,40222.0,43095.0,45968.0,48841.0,51714.0,54587.0,57460.0,60333.0,63206.0,66079.0,68952.0,71825.0,74698.0,77571.0,80444.0,83317.0,86190.0,89063.0,91936.0,94809.0,97682.0,100555.0,103428.0,106301.0,109174.0,112047.0,114920.0,117793.0,120666.0,123539.0,126412.0,129285.0,132158.0,135031.0,137904.0,140777.0,143650.0,146523.0,149396.0,152269.0,155142.0,158015.0,160888.0,163761.0,166634.0,169507.0,172380.0,175253.0,178126.0,180999.0,183872.0,186745.0,189618.0,192491.0,195364.0,198237.0,201110.0,203983.0,206856.0,209729.0,212602.0,215475.0,218348.0,221221.0,224094.0,226967.0,229840.0,232713.0,235586.0,238459.0,241332.0,244205.0,247078.0,249951.0,252824.0,255697.0,258570.0,261443.0,264316.0,267189.0,270062.0,272935.0,275808.0,278681.0,281554.0,284427.0,287300.0],"times":[964431.0,1941646.0,2915145.0,3843795.0,4908083.0,6215696.0,7382110.0,8561553.0,9444550.0,10391740.0,11271884.0,12202190.0,13038763.0,13856328.0,14827927.0,15753958.0,16748681.0,17774304.0,18471918.0,19492793.0,20382807.0,21191656.0,22451596.0,23360835.0,24840528.0,25731405.0,27829320.0,28889260.0,28480590.0,29438901.0,30273864.0,30864867.0,31722861.0,32678687.0,33795868.0,35161696.0,35863590.0,36653465.0,37751449.0,39080851.0,41639905.0,41705111.0,42409528.0,43423085.0,43918116.0,44682401.0,45290416.0,46329294.0,47128024.0,48023475.0,50000938.0,50755593.0,54347011.0,52852420.0,53997136.0,54716735.0,58067199.0,58938131.0,57473134.0,58208122.0,58935500.0,59892857.0,61093299.0,62145165.0,63295480.0,66432990.0,67183338.0,67213762.0,69597031.0,69954239.0,68657799.0,70203273.0,70346154.0,72318068.0,73985875.0,75093522.0,75557481.0,76295120.0,76547888.0,77657168.0,80705866.0,80614963.0,84920769.0,82030780.0,81890459.0,84263036.0,85336541.0,85527390.0,86614834.0,88262779.0,89171221.0,90029391.0,91717799.0,94763777.0,97215424.0,94166077.0,94543170.0,95409146.0,96959777.0,98063531.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/80/base/tukey.json: -------------------------------------------------------------------------------- 1 | [318.41911651153396,328.1913546956817,354.25065652007567,364.0228947042234] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/80/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"80","throughput":null,"full_id":"exists/with_paths!/80","directory_name":"exists/with_paths!/80","title":"exists/with_paths!/80"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/80/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":341.6446874650146,"upper_bound":344.7454207919794},"point_estimate":343.1439377615493,"standard_error":0.7901258153967141},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":339.7690037682168,"upper_bound":341.57026531632016},"point_estimate":340.78318924246526,"standard_error":0.5527059948071418},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.3811854402278647,"upper_bound":6.3629786012264935},"point_estimate":4.628233119144099,"standard_error":0.7153045025674943},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":340.80278480467086,"upper_bound":343.58018618787247},"point_estimate":342.12037743927436,"standard_error":0.7124474738128397},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.277977190338955,"upper_bound":9.376716016709056},"point_estimate":7.933024530693677,"standard_error":0.7884525290629801}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/80/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2873.0,5746.0,8619.0,11492.0,14365.0,17238.0,20111.0,22984.0,25857.0,28730.0,31603.0,34476.0,37349.0,40222.0,43095.0,45968.0,48841.0,51714.0,54587.0,57460.0,60333.0,63206.0,66079.0,68952.0,71825.0,74698.0,77571.0,80444.0,83317.0,86190.0,89063.0,91936.0,94809.0,97682.0,100555.0,103428.0,106301.0,109174.0,112047.0,114920.0,117793.0,120666.0,123539.0,126412.0,129285.0,132158.0,135031.0,137904.0,140777.0,143650.0,146523.0,149396.0,152269.0,155142.0,158015.0,160888.0,163761.0,166634.0,169507.0,172380.0,175253.0,178126.0,180999.0,183872.0,186745.0,189618.0,192491.0,195364.0,198237.0,201110.0,203983.0,206856.0,209729.0,212602.0,215475.0,218348.0,221221.0,224094.0,226967.0,229840.0,232713.0,235586.0,238459.0,241332.0,244205.0,247078.0,249951.0,252824.0,255697.0,258570.0,261443.0,264316.0,267189.0,270062.0,272935.0,275808.0,278681.0,281554.0,284427.0,287300.0],"times":[964431.0,1941646.0,2915145.0,3843795.0,4908083.0,6215696.0,7382110.0,8561553.0,9444550.0,10391740.0,11271884.0,12202190.0,13038763.0,13856328.0,14827927.0,15753958.0,16748681.0,17774304.0,18471918.0,19492793.0,20382807.0,21191656.0,22451596.0,23360835.0,24840528.0,25731405.0,27829320.0,28889260.0,28480590.0,29438901.0,30273864.0,30864867.0,31722861.0,32678687.0,33795868.0,35161696.0,35863590.0,36653465.0,37751449.0,39080851.0,41639905.0,41705111.0,42409528.0,43423085.0,43918116.0,44682401.0,45290416.0,46329294.0,47128024.0,48023475.0,50000938.0,50755593.0,54347011.0,52852420.0,53997136.0,54716735.0,58067199.0,58938131.0,57473134.0,58208122.0,58935500.0,59892857.0,61093299.0,62145165.0,63295480.0,66432990.0,67183338.0,67213762.0,69597031.0,69954239.0,68657799.0,70203273.0,70346154.0,72318068.0,73985875.0,75093522.0,75557481.0,76295120.0,76547888.0,77657168.0,80705866.0,80614963.0,84920769.0,82030780.0,81890459.0,84263036.0,85336541.0,85527390.0,86614834.0,88262779.0,89171221.0,90029391.0,91717799.0,94763777.0,97215424.0,94166077.0,94543170.0,95409146.0,96959777.0,98063531.0]} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/80/new/tukey.json: -------------------------------------------------------------------------------- 1 | [318.41911651153396,328.1913546956817,354.25065652007567,364.0228947042234] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/90/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"90","throughput":null,"full_id":"exists/with_paths!/90","directory_name":"exists/with_paths!/90","title":"exists/with_paths!/90"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/90/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":349.9176994914784,"upper_bound":353.14438719405064},"point_estimate":351.45214133362066,"standard_error":0.8272369191587046},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":347.823081795989,"upper_bound":349.8470971369167},"point_estimate":348.9054126087708,"standard_error":0.45874007105916453},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.972337275318738,"upper_bound":5.4239688864033315},"point_estimate":3.9283261575721764,"standard_error":0.6390644720694636},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":349.0218818920091,"upper_bound":352.77786722667236},"point_estimate":350.7942294795944,"standard_error":0.9652491900912099},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.167962985368364,"upper_bound":10.411103375675406},"point_estimate":8.337417212375522,"standard_error":1.0901010764799206}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/90/base/tukey.json: -------------------------------------------------------------------------------- 1 | [328.6197741497259,337.46300985382527,361.04497173142363,369.88820743552304] -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/90/change/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.021289988225356125,"upper_bound":-0.009921885556112175},"point_estimate":-0.01566464144693025,"standard_error":0.002880778805789234},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.023857443117776156,"upper_bound":-0.012862561780778648},"point_estimate":-0.01609746902366782,"standard_error":0.0029979706965714255}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/90/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"exists","function_id":"with_paths!","value_str":"90","throughput":null,"full_id":"exists/with_paths!/90","directory_name":"exists/with_paths!/90","title":"exists/with_paths!/90"} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/90/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":349.9176994914784,"upper_bound":353.14438719405064},"point_estimate":351.45214133362066,"standard_error":0.8272369191587046},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":347.823081795989,"upper_bound":349.8470971369167},"point_estimate":348.9054126087708,"standard_error":0.45874007105916453},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.972337275318738,"upper_bound":5.4239688864033315},"point_estimate":3.9283261575721764,"standard_error":0.6390644720694636},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":349.0218818920091,"upper_bound":352.77786722667236},"point_estimate":350.7942294795944,"standard_error":0.9652491900912099},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.167962985368364,"upper_bound":10.411103375675406},"point_estimate":8.337417212375522,"standard_error":1.0901010764799206}} -------------------------------------------------------------------------------- /docs/benchmarks/exists/with_paths!/90/new/tukey.json: -------------------------------------------------------------------------------- 1 | [328.6197741497259,337.46300985382527,361.04497173142363,369.88820743552304] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/10/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"10","throughput":null,"full_id":"join/Path.join/10","directory_name":"join/Path.join/10","title":"join/Path.join/10"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/10/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":42.36175811598576,"upper_bound":42.41515343473635},"point_estimate":42.38840893418021,"standard_error":0.013655350502749738},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":42.36267258412707,"upper_bound":42.40323044452216},"point_estimate":42.38780256458351,"standard_error":0.009887164554281255},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.080734939524091,"upper_bound":0.1468179928447665},"point_estimate":0.10574368457876916,"standard_error":0.016766070813164915},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":42.378215233363726,"upper_bound":42.432182729906245},"point_estimate":42.40401324914293,"standard_error":0.013834470286477154},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.11305008395531198,"upper_bound":0.15728004928060868},"point_estimate":0.13600397360377045,"standard_error":0.011324552521246105}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/10/base/tukey.json: -------------------------------------------------------------------------------- 1 | [41.898328554173645,42.10786949917822,42.66664535252376,42.876186297528335] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/10/change/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.02649800929042101,"upper_bound":-0.024157262586885442},"point_estimate":-0.025279999576486745,"standard_error":0.0005952647257946608},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.026458097715230222,"upper_bound":-0.023785268607331055},"point_estimate":-0.024651964595504783,"standard_error":0.0006487438951366536}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/10/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"10","throughput":null,"full_id":"join/Path.join/10","directory_name":"join/Path.join/10","title":"join/Path.join/10"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/10/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":42.36175811598576,"upper_bound":42.41515343473635},"point_estimate":42.38840893418021,"standard_error":0.013655350502749738},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":42.36267258412707,"upper_bound":42.40323044452216},"point_estimate":42.38780256458351,"standard_error":0.009887164554281255},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.080734939524091,"upper_bound":0.1468179928447665},"point_estimate":0.10574368457876916,"standard_error":0.016766070813164915},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":42.378215233363726,"upper_bound":42.432182729906245},"point_estimate":42.40401324914293,"standard_error":0.013834470286477154},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.11305008395531198,"upper_bound":0.15728004928060868},"point_estimate":0.13600397360377045,"standard_error":0.011324552521246105}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/10/new/tukey.json: -------------------------------------------------------------------------------- 1 | [41.898328554173645,42.10786949917822,42.66664535252376,42.876186297528335] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/100/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"100","throughput":null,"full_id":"join/Path.join/100","directory_name":"join/Path.join/100","title":"join/Path.join/100"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/100/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":94.47893037355136,"upper_bound":94.70426597571247},"point_estimate":94.58463542899622,"standard_error":0.05773927239851829},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":94.35569325698748,"upper_bound":94.55611738712648},"point_estimate":94.42811950183597,"standard_error":0.05038625017079455},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.26747180332712467,"upper_bound":0.44618335828276967},"point_estimate":0.3440827008942053,"standard_error":0.04486682638058925},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":94.40863819396446,"upper_bound":94.62744538898922},"point_estimate":94.50896644952765,"standard_error":0.056263634446424536},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.39618232709386797,"upper_bound":0.7394443066331724},"point_estimate":0.5782329871716725,"standard_error":0.0876595183418251}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/100/base/tukey.json: -------------------------------------------------------------------------------- 1 | [92.7783955093958,93.51115754247436,95.46518963068385,96.19795166376241] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/100/change/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.25739734194054625,"upper_bound":0.26162206094675355},"point_estimate":0.25958453119536906,"standard_error":0.0010820467698527529},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.25863868653953803,"upper_bound":0.2618004263779834},"point_estimate":0.26009134650256116,"standard_error":0.0007917059226893578}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/100/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"100","throughput":null,"full_id":"join/Path.join/100","directory_name":"join/Path.join/100","title":"join/Path.join/100"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/100/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":94.47893037355136,"upper_bound":94.70426597571247},"point_estimate":94.58463542899622,"standard_error":0.05773927239851829},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":94.35569325698748,"upper_bound":94.55611738712648},"point_estimate":94.42811950183597,"standard_error":0.05038625017079455},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.26747180332712467,"upper_bound":0.44618335828276967},"point_estimate":0.3440827008942053,"standard_error":0.04486682638058925},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":94.40863819396446,"upper_bound":94.62744538898922},"point_estimate":94.50896644952765,"standard_error":0.056263634446424536},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.39618232709386797,"upper_bound":0.7394443066331724},"point_estimate":0.5782329871716725,"standard_error":0.0876595183418251}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/100/new/tukey.json: -------------------------------------------------------------------------------- 1 | [92.7783955093958,93.51115754247436,95.46518963068385,96.19795166376241] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/110/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"110","throughput":null,"full_id":"join/Path.join/110","directory_name":"join/Path.join/110","title":"join/Path.join/110"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/110/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":79.62770213235015,"upper_bound":80.01761419964268},"point_estimate":79.80084061407965,"standard_error":0.10026197399670923},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":79.52326941384469,"upper_bound":79.59288045695635},"point_estimate":79.55311964400836,"standard_error":0.019124427624198023},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1204461442715806,"upper_bound":0.22702975364470307},"point_estimate":0.1620473375826461,"standard_error":0.02811758095365925},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":79.52884855771623,"upper_bound":79.84832591277839},"point_estimate":79.65681050761317,"standard_error":0.08375118975242608},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.4115376454382529,"upper_bound":1.4456526716635791},"point_estimate":1.0067243802953334,"standard_error":0.2587091087690668}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/110/base/tukey.json: -------------------------------------------------------------------------------- 1 | [78.67530434722026,79.06024224625551,80.08674331034953,80.4716812093848] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/110/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"110","throughput":null,"full_id":"join/Path.join/110","directory_name":"join/Path.join/110","title":"join/Path.join/110"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/110/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":79.62770213235015,"upper_bound":80.01761419964268},"point_estimate":79.80084061407965,"standard_error":0.10026197399670923},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":79.52326941384469,"upper_bound":79.59288045695635},"point_estimate":79.55311964400836,"standard_error":0.019124427624198023},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1204461442715806,"upper_bound":0.22702975364470307},"point_estimate":0.1620473375826461,"standard_error":0.02811758095365925},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":79.52884855771623,"upper_bound":79.84832591277839},"point_estimate":79.65681050761317,"standard_error":0.08375118975242608},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.4115376454382529,"upper_bound":1.4456526716635791},"point_estimate":1.0067243802953334,"standard_error":0.2587091087690668}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/110/new/tukey.json: -------------------------------------------------------------------------------- 1 | [78.67530434722026,79.06024224625551,80.08674331034953,80.4716812093848] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/20/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"20","throughput":null,"full_id":"join/Path.join/20","directory_name":"join/Path.join/20","title":"join/Path.join/20"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/20/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":53.2061806246392,"upper_bound":53.25964831090963},"point_estimate":53.23327577160806,"standard_error":0.01360782550826984},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":53.20233918128655,"upper_bound":53.26373540241186},"point_estimate":53.232809418285385,"standard_error":0.016216307630580008},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.08467179397696216,"upper_bound":0.13619370384096682},"point_estimate":0.11584174866500177,"standard_error":0.013670491166879534},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":53.20270034391822,"upper_bound":53.241836280486574},"point_estimate":53.22140283305918,"standard_error":0.010030743341480556},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.10511794968182236,"upper_bound":0.16752979409714933},"point_estimate":0.13702085316659243,"standard_error":0.01596209154567825}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/20/base/tukey.json: -------------------------------------------------------------------------------- 1 | [52.66876410645142,52.91286714875769,53.56380859490775,53.80791163721402] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/20/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"20","throughput":null,"full_id":"join/Path.join/20","directory_name":"join/Path.join/20","title":"join/Path.join/20"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/20/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":53.2061806246392,"upper_bound":53.25964831090963},"point_estimate":53.23327577160806,"standard_error":0.01360782550826984},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":53.20233918128655,"upper_bound":53.26373540241186},"point_estimate":53.232809418285385,"standard_error":0.016216307630580008},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.08467179397696216,"upper_bound":0.13619370384096682},"point_estimate":0.11584174866500177,"standard_error":0.013670491166879534},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":53.20270034391822,"upper_bound":53.241836280486574},"point_estimate":53.22140283305918,"standard_error":0.010030743341480556},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.10511794968182236,"upper_bound":0.16752979409714933},"point_estimate":0.13702085316659243,"standard_error":0.01596209154567825}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/20/new/tukey.json: -------------------------------------------------------------------------------- 1 | [52.66876410645142,52.91286714875769,53.56380859490775,53.80791163721402] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/30/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"30","throughput":null,"full_id":"join/Path.join/30","directory_name":"join/Path.join/30","title":"join/Path.join/30"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/30/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":57.60247715038991,"upper_bound":57.87092768474231},"point_estimate":57.70964099983739,"standard_error":0.07095498285965818},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":57.56833738949798,"upper_bound":57.610085679098646},"point_estimate":57.58602752389373,"standard_error":0.010909425405572172},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.07099906015128307,"upper_bound":0.15450382678841368},"point_estimate":0.10058592713955725,"standard_error":0.02194810346770602},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":57.5667492570207,"upper_bound":57.637899495827774},"point_estimate":57.599134605499685,"standard_error":0.018123350209307155},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1592987994868026,"upper_bound":1.1638266853802786},"point_estimate":0.7133816157156938,"standard_error":0.2981545131858098}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/30/base/tukey.json: -------------------------------------------------------------------------------- 1 | [57.11882947199446,57.32538563314858,57.876202062892894,58.08275822404701] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/30/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"30","throughput":null,"full_id":"join/Path.join/30","directory_name":"join/Path.join/30","title":"join/Path.join/30"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/30/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":57.60247715038991,"upper_bound":57.87092768474231},"point_estimate":57.70964099983739,"standard_error":0.07095498285965818},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":57.56833738949798,"upper_bound":57.610085679098646},"point_estimate":57.58602752389373,"standard_error":0.010909425405572172},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.07099906015128307,"upper_bound":0.15450382678841368},"point_estimate":0.10058592713955725,"standard_error":0.02194810346770602},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":57.5667492570207,"upper_bound":57.637899495827774},"point_estimate":57.599134605499685,"standard_error":0.018123350209307155},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1592987994868026,"upper_bound":1.1638266853802786},"point_estimate":0.7133816157156938,"standard_error":0.2981545131858098}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/30/new/tukey.json: -------------------------------------------------------------------------------- 1 | [57.11882947199446,57.32538563314858,57.876202062892894,58.08275822404701] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/40/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"40","throughput":null,"full_id":"join/Path.join/40","directory_name":"join/Path.join/40","title":"join/Path.join/40"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/40/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":61.25930702155214,"upper_bound":61.3549479173876},"point_estimate":61.30179277455324,"standard_error":0.02461595375316548},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":61.22855380804464,"upper_bound":61.29300226940062},"point_estimate":61.25114905206648,"standard_error":0.016000343886609803},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1013745807799792,"upper_bound":0.16107085126756204},"point_estimate":0.12985272937008438,"standard_error":0.014488433783762227},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":61.20609679967363,"upper_bound":61.26721786413317},"point_estimate":61.23551474588377,"standard_error":0.015651761463440123},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.13432646936131207,"upper_bound":0.3694132433526552},"point_estimate":0.2492513239269161,"standard_error":0.06880923877061516}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/40/base/tukey.json: -------------------------------------------------------------------------------- 1 | [60.66360977811641,60.9181537303796,61.59693760308144,61.851481555344634] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/40/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"40","throughput":null,"full_id":"join/Path.join/40","directory_name":"join/Path.join/40","title":"join/Path.join/40"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/40/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":61.25930702155214,"upper_bound":61.3549479173876},"point_estimate":61.30179277455324,"standard_error":0.02461595375316548},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":61.22855380804464,"upper_bound":61.29300226940062},"point_estimate":61.25114905206648,"standard_error":0.016000343886609803},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1013745807799792,"upper_bound":0.16107085126756204},"point_estimate":0.12985272937008438,"standard_error":0.014488433783762227},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":61.20609679967363,"upper_bound":61.26721786413317},"point_estimate":61.23551474588377,"standard_error":0.015651761463440123},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.13432646936131207,"upper_bound":0.3694132433526552},"point_estimate":0.2492513239269161,"standard_error":0.06880923877061516}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/40/new/tukey.json: -------------------------------------------------------------------------------- 1 | [60.66360977811641,60.9181537303796,61.59693760308144,61.851481555344634] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/50/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"50","throughput":null,"full_id":"join/Path.join/50","directory_name":"join/Path.join/50","title":"join/Path.join/50"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/50/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":64.55656270875052,"upper_bound":64.64368142682494},"point_estimate":64.59550777104738,"standard_error":0.022217661818985487},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":64.52663482586499,"upper_bound":64.58978714387297},"point_estimate":64.56297613262055,"standard_error":0.014500150529354007},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.09416684522580851,"upper_bound":0.16325302999498986},"point_estimate":0.12399103726761306,"standard_error":0.017424850270530774},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":64.55481505547543,"upper_bound":64.6342140973655},"point_estimate":64.5948144984797,"standard_error":0.02026254640146464},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.12389677408843881,"upper_bound":0.33208124782936255},"point_estimate":0.2234339498952563,"standard_error":0.06199418626335322}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/50/base/tukey.json: -------------------------------------------------------------------------------- 1 | [63.880061157482544,64.18148616227128,64.98528617504124,65.28671117982996] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/50/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"50","throughput":null,"full_id":"join/Path.join/50","directory_name":"join/Path.join/50","title":"join/Path.join/50"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/50/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":64.55656270875052,"upper_bound":64.64368142682494},"point_estimate":64.59550777104738,"standard_error":0.022217661818985487},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":64.52663482586499,"upper_bound":64.58978714387297},"point_estimate":64.56297613262055,"standard_error":0.014500150529354007},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.09416684522580851,"upper_bound":0.16325302999498986},"point_estimate":0.12399103726761306,"standard_error":0.017424850270530774},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":64.55481505547543,"upper_bound":64.6342140973655},"point_estimate":64.5948144984797,"standard_error":0.02026254640146464},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.12389677408843881,"upper_bound":0.33208124782936255},"point_estimate":0.2234339498952563,"standard_error":0.06199418626335322}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/50/new/tukey.json: -------------------------------------------------------------------------------- 1 | [63.880061157482544,64.18148616227128,64.98528617504124,65.28671117982996] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/60/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"60","throughput":null,"full_id":"join/Path.join/60","directory_name":"join/Path.join/60","title":"join/Path.join/60"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/60/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":64.6251607706687,"upper_bound":64.76844739303442},"point_estimate":64.68882973341722,"standard_error":0.03681809004850062},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":64.55113832274263,"upper_bound":64.68977358572957},"point_estimate":64.61179871442522,"standard_error":0.03581618022514002},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.17605525226897548,"upper_bound":0.2913180599358281},"point_estimate":0.2280735044797133,"standard_error":0.03048082353145464},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":64.55707706807038,"upper_bound":64.70125872204466},"point_estimate":64.61829510957361,"standard_error":0.03726330181620091},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2159982891832098,"upper_bound":0.5385857012079388},"point_estimate":0.36943334756511276,"standard_error":0.09672015461292638}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/60/base/tukey.json: -------------------------------------------------------------------------------- 1 | [63.49330312592713,63.98728134307368,65.30455658879782,65.79853480594439] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/60/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"60","throughput":null,"full_id":"join/Path.join/60","directory_name":"join/Path.join/60","title":"join/Path.join/60"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/60/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":64.6251607706687,"upper_bound":64.76844739303442},"point_estimate":64.68882973341722,"standard_error":0.03681809004850062},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":64.55113832274263,"upper_bound":64.68977358572957},"point_estimate":64.61179871442522,"standard_error":0.03581618022514002},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.17605525226897548,"upper_bound":0.2913180599358281},"point_estimate":0.2280735044797133,"standard_error":0.03048082353145464},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":64.55707706807038,"upper_bound":64.70125872204466},"point_estimate":64.61829510957361,"standard_error":0.03726330181620091},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2159982891832098,"upper_bound":0.5385857012079388},"point_estimate":0.36943334756511276,"standard_error":0.09672015461292638}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/60/new/tukey.json: -------------------------------------------------------------------------------- 1 | [63.49330312592713,63.98728134307368,65.30455658879782,65.79853480594439] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/70/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"70","throughput":null,"full_id":"join/Path.join/70","directory_name":"join/Path.join/70","title":"join/Path.join/70"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/70/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":69.63926855125528,"upper_bound":69.73384561875444},"point_estimate":69.68415818330877,"standard_error":0.024104534047609687},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":69.63095529006205,"upper_bound":69.71332775393196},"point_estimate":69.67827163946666,"standard_error":0.021241351932959472},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.11442258164096945,"upper_bound":0.1760239713138251},"point_estimate":0.14115761876033098,"standard_error":0.0156371707269471},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":69.64803892353193,"upper_bound":69.71048997836866},"point_estimate":69.67858529199219,"standard_error":0.015903376144410623},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1517257145350396,"upper_bound":0.34229178717210956},"point_estimate":0.24332812757670966,"standard_error":0.0517427172592186}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/70/base/tukey.json: -------------------------------------------------------------------------------- 1 | [69.00522512188259,69.29140333106457,70.05454522221655,70.34072343139854] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/70/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"70","throughput":null,"full_id":"join/Path.join/70","directory_name":"join/Path.join/70","title":"join/Path.join/70"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/70/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":69.63926855125528,"upper_bound":69.73384561875444},"point_estimate":69.68415818330877,"standard_error":0.024104534047609687},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":69.63095529006205,"upper_bound":69.71332775393196},"point_estimate":69.67827163946666,"standard_error":0.021241351932959472},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.11442258164096945,"upper_bound":0.1760239713138251},"point_estimate":0.14115761876033098,"standard_error":0.0156371707269471},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":69.64803892353193,"upper_bound":69.71048997836866},"point_estimate":69.67858529199219,"standard_error":0.015903376144410623},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1517257145350396,"upper_bound":0.34229178717210956},"point_estimate":0.24332812757670966,"standard_error":0.0517427172592186}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/70/new/tukey.json: -------------------------------------------------------------------------------- 1 | [69.00522512188259,69.29140333106457,70.05454522221655,70.34072343139854] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/80/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"80","throughput":null,"full_id":"join/Path.join/80","directory_name":"join/Path.join/80","title":"join/Path.join/80"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/80/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":71.9534514747961,"upper_bound":72.04739102221447},"point_estimate":71.9990265323112,"standard_error":0.023996384312580114},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":71.90404597366698,"upper_bound":72.01009072319177},"point_estimate":71.97083590790662,"standard_error":0.030899846770131034},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.14047723276644186,"upper_bound":0.235957994888531},"point_estimate":0.18278762210266664,"standard_error":0.0232510770701088},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":71.92312991767734,"upper_bound":72.0042768747669},"point_estimate":71.9626498464423,"standard_error":0.020596692050244867},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.19396825001757464,"upper_bound":0.2873976146144105},"point_estimate":0.24144068016794135,"standard_error":0.023899187444693982}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/80/base/tukey.json: -------------------------------------------------------------------------------- 1 | [71.09577699374681,71.472087428953,72.47558192283618,72.85189235804238] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/80/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"80","throughput":null,"full_id":"join/Path.join/80","directory_name":"join/Path.join/80","title":"join/Path.join/80"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/80/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":71.9534514747961,"upper_bound":72.04739102221447},"point_estimate":71.9990265323112,"standard_error":0.023996384312580114},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":71.90404597366698,"upper_bound":72.01009072319177},"point_estimate":71.97083590790662,"standard_error":0.030899846770131034},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.14047723276644186,"upper_bound":0.235957994888531},"point_estimate":0.18278762210266664,"standard_error":0.0232510770701088},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":71.92312991767734,"upper_bound":72.0042768747669},"point_estimate":71.9626498464423,"standard_error":0.020596692050244867},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.19396825001757464,"upper_bound":0.2873976146144105},"point_estimate":0.24144068016794135,"standard_error":0.023899187444693982}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/80/new/tukey.json: -------------------------------------------------------------------------------- 1 | [71.09577699374681,71.472087428953,72.47558192283618,72.85189235804238] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/90/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"90","throughput":null,"full_id":"join/Path.join/90","directory_name":"join/Path.join/90","title":"join/Path.join/90"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/90/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":79.3709767387488,"upper_bound":79.69452515167531},"point_estimate":79.49710602016401,"standard_error":0.08512002924341783},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":79.33994350608174,"upper_bound":79.44908273201841},"point_estimate":79.39417405054436,"standard_error":0.024650687823936243},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.13829000279656717,"upper_bound":0.25999252958145896},"point_estimate":0.2026733524126004,"standard_error":0.0311479956380225},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":79.404789717256,"upper_bound":79.48797122771924},"point_estimate":79.44710451037248,"standard_error":0.021216567604528076},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.23005118500675922,"upper_bound":1.4014981960872253},"point_estimate":0.8504195028480194,"standard_error":0.37405796752482945}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/90/base/tukey.json: -------------------------------------------------------------------------------- 1 | [78.46140079817364,78.86741554220778,79.95012152629882,80.35613627033295] -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/90/change/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.043295250474258445,"upper_bound":0.08318115402828778},"point_estimate":0.06445175405588088,"standard_error":0.010207911286525212},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.09122073338213377,"upper_bound":0.09601409408434436},"point_estimate":0.09323830221843066,"standard_error":0.0011021261452550766}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/90/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"Path.join","value_str":"90","throughput":null,"full_id":"join/Path.join/90","directory_name":"join/Path.join/90","title":"join/Path.join/90"} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/90/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":79.3709767387488,"upper_bound":79.69452515167531},"point_estimate":79.49710602016401,"standard_error":0.08512002924341783},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":79.33994350608174,"upper_bound":79.44908273201841},"point_estimate":79.39417405054436,"standard_error":0.024650687823936243},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.13829000279656717,"upper_bound":0.25999252958145896},"point_estimate":0.2026733524126004,"standard_error":0.0311479956380225},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":79.404789717256,"upper_bound":79.48797122771924},"point_estimate":79.44710451037248,"standard_error":0.021216567604528076},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.23005118500675922,"upper_bound":1.4014981960872253},"point_estimate":0.8504195028480194,"standard_error":0.37405796752482945}} -------------------------------------------------------------------------------- /docs/benchmarks/join/Path.join/90/new/tukey.json: -------------------------------------------------------------------------------- 1 | [78.46140079817364,78.86741554220778,79.95012152629882,80.35613627033295] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/10/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"10","throughput":null,"full_id":"join/with_paths!/10","directory_name":"join/with_paths!/10","title":"join/with_paths!/10"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/10/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":17.797023524215767,"upper_bound":17.842656097386538},"point_estimate":17.820195006218256,"standard_error":0.011599731145295644},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":17.799146777630327,"upper_bound":17.844279524328414},"point_estimate":17.82736357211099,"standard_error":0.011479525264942449},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.0692863084452866,"upper_bound":0.11129305615851144},"point_estimate":0.08611425869278916,"standard_error":0.010422133581259006},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":17.804582772429768,"upper_bound":17.845667994575813},"point_estimate":17.823613122479816,"standard_error":0.01046145058595455},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.0886949192138122,"upper_bound":0.14503339274506868},"point_estimate":0.11790118735041222,"standard_error":0.014203707250850149}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/10/base/tukey.json: -------------------------------------------------------------------------------- 1 | [17.423980568969284,17.59707174824465,18.058648226312293,18.231739405587657] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/10/change/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.13139905415556724,"upper_bound":-0.12829467624406313},"point_estimate":-0.12989044331508048,"standard_error":0.0007953148524690417},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.129785508775496,"upper_bound":-0.12731030337379856},"point_estimate":-0.1284168501344739,"standard_error":0.0006320363958856981}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/10/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"10","throughput":null,"full_id":"join/with_paths!/10","directory_name":"join/with_paths!/10","title":"join/with_paths!/10"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/10/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":17.797023524215767,"upper_bound":17.842656097386538},"point_estimate":17.820195006218256,"standard_error":0.011599731145295644},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":17.799146777630327,"upper_bound":17.844279524328414},"point_estimate":17.82736357211099,"standard_error":0.011479525264942449},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.0692863084452866,"upper_bound":0.11129305615851144},"point_estimate":0.08611425869278916,"standard_error":0.010422133581259006},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":17.804582772429768,"upper_bound":17.845667994575813},"point_estimate":17.823613122479816,"standard_error":0.01046145058595455},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.0886949192138122,"upper_bound":0.14503339274506868},"point_estimate":0.11790118735041222,"standard_error":0.014203707250850149}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/10/new/tukey.json: -------------------------------------------------------------------------------- 1 | [17.423980568969284,17.59707174824465,18.058648226312293,18.231739405587657] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/100/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"100","throughput":null,"full_id":"join/with_paths!/100","directory_name":"join/with_paths!/100","title":"join/with_paths!/100"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/100/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.330350598216786,"upper_bound":25.497685887854928},"point_estimate":25.404356111040993,"standard_error":0.0430837324973135},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.322607843758295,"upper_bound":25.370321152685452},"point_estimate":25.350787172046182,"standard_error":0.013465657501008229},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.07955797052795538,"upper_bound":0.1783181270405866},"point_estimate":0.1313364022273548,"standard_error":0.027428620843099594},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.334120767042414,"upper_bound":25.535220934960215},"point_estimate":25.4100503410509,"standard_error":0.05360657967773579},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.17297001058427358,"upper_bound":0.6401112130730348},"point_estimate":0.4346297168361903,"standard_error":0.12486009445912143}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/100/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.744742224564106,24.995768206232633,25.66517082401537,25.916196805683896] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/100/change/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.3307011583334186,"upper_bound":-0.273766116503732},"point_estimate":-0.30311177942132483,"standard_error":0.01452861283033891},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.33931951753344003,"upper_bound":-0.2328742136343266},"point_estimate":-0.26875168796098003,"standard_error":0.022275668548465664}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/100/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"100","throughput":null,"full_id":"join/with_paths!/100","directory_name":"join/with_paths!/100","title":"join/with_paths!/100"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/100/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.330350598216786,"upper_bound":25.497685887854928},"point_estimate":25.404356111040993,"standard_error":0.0430837324973135},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.322607843758295,"upper_bound":25.370321152685452},"point_estimate":25.350787172046182,"standard_error":0.013465657501008229},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.07955797052795538,"upper_bound":0.1783181270405866},"point_estimate":0.1313364022273548,"standard_error":0.027428620843099594},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.334120767042414,"upper_bound":25.535220934960215},"point_estimate":25.4100503410509,"standard_error":0.05360657967773579},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.17297001058427358,"upper_bound":0.6401112130730348},"point_estimate":0.4346297168361903,"standard_error":0.12486009445912143}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/100/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.744742224564106,24.995768206232633,25.66517082401537,25.916196805683896] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/110/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"110","throughput":null,"full_id":"join/with_paths!/110","directory_name":"join/with_paths!/110","title":"join/with_paths!/110"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/110/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":30.156109541136114,"upper_bound":30.23400437490651},"point_estimate":30.19436366541622,"standard_error":0.019806230208074184},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":30.131653144760712,"upper_bound":30.229857962499594},"point_estimate":30.189423332892673,"standard_error":0.022008026903510138},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.13383881107381193,"upper_bound":0.22946439253924797},"point_estimate":0.17323338240078387,"standard_error":0.02409908420250813},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":30.177300589430885,"upper_bound":30.25688534537583},"point_estimate":30.217778923725817,"standard_error":0.020347962715555713},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.16058990616707638,"upper_bound":0.23563175641711584},"point_estimate":0.19865626786171295,"standard_error":0.019304904161905802}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/110/base/tukey.json: -------------------------------------------------------------------------------- 1 | [29.354289687915248,29.707265658792217,30.64853491446413,31.001510885341094] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/110/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"110","throughput":null,"full_id":"join/with_paths!/110","directory_name":"join/with_paths!/110","title":"join/with_paths!/110"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/110/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":30.156109541136114,"upper_bound":30.23400437490651},"point_estimate":30.19436366541622,"standard_error":0.019806230208074184},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":30.131653144760712,"upper_bound":30.229857962499594},"point_estimate":30.189423332892673,"standard_error":0.022008026903510138},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.13383881107381193,"upper_bound":0.22946439253924797},"point_estimate":0.17323338240078387,"standard_error":0.02409908420250813},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":30.177300589430885,"upper_bound":30.25688534537583},"point_estimate":30.217778923725817,"standard_error":0.020347962715555713},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.16058990616707638,"upper_bound":0.23563175641711584},"point_estimate":0.19865626786171295,"standard_error":0.019304904161905802}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/110/new/tukey.json: -------------------------------------------------------------------------------- 1 | [29.354289687915248,29.707265658792217,30.64853491446413,31.001510885341094] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/20/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"20","throughput":null,"full_id":"join/with_paths!/20","directory_name":"join/with_paths!/20","title":"join/with_paths!/20"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/20/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.613128159849065,"upper_bound":18.66033528829074},"point_estimate":18.636500395189156,"standard_error":0.012043520896909783},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.607238956705658,"upper_bound":18.648343734077233},"point_estimate":18.63297887968716,"standard_error":0.009974472748637137},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.057977463790396616,"upper_bound":0.09866957746192852},"point_estimate":0.06791614738185393,"standard_error":0.010666513583236515},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.61356911814101,"upper_bound":18.64617324469467},"point_estimate":18.630257737865193,"standard_error":0.0083331600529591},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.09454921746082448,"upper_bound":0.14641924102635184},"point_estimate":0.12115776938024814,"standard_error":0.013249652538027828}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/20/base/tukey.json: -------------------------------------------------------------------------------- 1 | [18.3207018783823,18.456642099986027,18.81914935759596,18.955089579199687] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/20/change/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.24813746656476512,"upper_bound":-0.2457392661271565},"point_estimate":-0.24688663017968926,"standard_error":0.0006127266663083404},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.24749991412814676,"upper_bound":-0.2453495535825433},"point_estimate":-0.24631165347171913,"standard_error":0.0005437392105413702}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/20/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"20","throughput":null,"full_id":"join/with_paths!/20","directory_name":"join/with_paths!/20","title":"join/with_paths!/20"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/20/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.613128159849065,"upper_bound":18.66033528829074},"point_estimate":18.636500395189156,"standard_error":0.012043520896909783},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.607238956705658,"upper_bound":18.648343734077233},"point_estimate":18.63297887968716,"standard_error":0.009974472748637137},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.057977463790396616,"upper_bound":0.09866957746192852},"point_estimate":0.06791614738185393,"standard_error":0.010666513583236515},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.61356911814101,"upper_bound":18.64617324469467},"point_estimate":18.630257737865193,"standard_error":0.0083331600529591},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.09454921746082448,"upper_bound":0.14641924102635184},"point_estimate":0.12115776938024814,"standard_error":0.013249652538027828}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/20/new/tukey.json: -------------------------------------------------------------------------------- 1 | [18.3207018783823,18.456642099986027,18.81914935759596,18.955089579199687] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/30/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"30","throughput":null,"full_id":"join/with_paths!/30","directory_name":"join/with_paths!/30","title":"join/with_paths!/30"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/30/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.879806855891474,"upper_bound":18.982603072338968},"point_estimate":18.924198268060564,"standard_error":0.02648914967407743},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.852679570055543,"upper_bound":18.887329643829815},"point_estimate":18.86413216365206,"standard_error":0.009642751540069676},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.062299996219709115,"upper_bound":0.09911521385171075},"point_estimate":0.08144953701987734,"standard_error":0.009262257987654206},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.852048326925427,"upper_bound":18.88150257622478},"point_estimate":18.86643478098925,"standard_error":0.007505738007030089},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.11126128221058391,"upper_bound":0.4057496366350248},"point_estimate":0.2662378555727031,"standard_error":0.08076583851683304}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/30/base/tukey.json: -------------------------------------------------------------------------------- 1 | [18.512959397557495,18.668924144276357,19.084830135526655,19.240794882245517] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/30/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"30","throughput":null,"full_id":"join/with_paths!/30","directory_name":"join/with_paths!/30","title":"join/with_paths!/30"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/30/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.879806855891474,"upper_bound":18.982603072338968},"point_estimate":18.924198268060564,"standard_error":0.02648914967407743},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.852679570055543,"upper_bound":18.887329643829815},"point_estimate":18.86413216365206,"standard_error":0.009642751540069676},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.062299996219709115,"upper_bound":0.09911521385171075},"point_estimate":0.08144953701987734,"standard_error":0.009262257987654206},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.852048326925427,"upper_bound":18.88150257622478},"point_estimate":18.86643478098925,"standard_error":0.007505738007030089},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.11126128221058391,"upper_bound":0.4057496366350248},"point_estimate":0.2662378555727031,"standard_error":0.08076583851683304}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/30/new/tukey.json: -------------------------------------------------------------------------------- 1 | [18.512959397557495,18.668924144276357,19.084830135526655,19.240794882245517] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/40/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"40","throughput":null,"full_id":"join/with_paths!/40","directory_name":"join/with_paths!/40","title":"join/with_paths!/40"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/40/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.956849984954818,"upper_bound":18.98975246787364},"point_estimate":18.97290869291459,"standard_error":0.008357045118449508},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.95418730945122,"upper_bound":18.98566289803523},"point_estimate":18.969839036940968,"standard_error":0.006737728632745863},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.06125886257736053,"upper_bound":0.10066282181727237},"point_estimate":0.07615170972458629,"standard_error":0.00946695677865382},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.94007403390691,"upper_bound":18.97282899841677},"point_estimate":18.956524247987,"standard_error":0.008374204223528341},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.06897625552271132,"upper_bound":0.09880413676778825},"point_estimate":0.0842333146362516,"standard_error":0.007590893592153323}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/40/base/tukey.json: -------------------------------------------------------------------------------- 1 | [18.578155457081102,18.743822505970815,19.18560130301005,19.351268351899762] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/40/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"40","throughput":null,"full_id":"join/with_paths!/40","directory_name":"join/with_paths!/40","title":"join/with_paths!/40"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/40/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.956849984954818,"upper_bound":18.98975246787364},"point_estimate":18.97290869291459,"standard_error":0.008357045118449508},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.95418730945122,"upper_bound":18.98566289803523},"point_estimate":18.969839036940968,"standard_error":0.006737728632745863},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.06125886257736053,"upper_bound":0.10066282181727237},"point_estimate":0.07615170972458629,"standard_error":0.00946695677865382},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18.94007403390691,"upper_bound":18.97282899841677},"point_estimate":18.956524247987,"standard_error":0.008374204223528341},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.06897625552271132,"upper_bound":0.09880413676778825},"point_estimate":0.0842333146362516,"standard_error":0.007590893592153323}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/40/new/tukey.json: -------------------------------------------------------------------------------- 1 | [18.578155457081102,18.743822505970815,19.18560130301005,19.351268351899762] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/50/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"50","throughput":null,"full_id":"join/with_paths!/50","directory_name":"join/with_paths!/50","title":"join/with_paths!/50"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/50/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":19.414948287728983,"upper_bound":19.462680218865852},"point_estimate":19.438206141624526,"standard_error":0.012132423563186862},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":19.40233183902803,"upper_bound":19.454959228790898},"point_estimate":19.426000121049903,"standard_error":0.012334084437656715},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.08167185510676893,"upper_bound":0.12535289202369412},"point_estimate":0.10042255474771986,"standard_error":0.011092125861836128},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":19.426243051314326,"upper_bound":19.46719379102478},"point_estimate":19.446668289476943,"standard_error":0.010438163429815258},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.09756567639644799,"upper_bound":0.1474537128520729},"point_estimate":0.12210502418416758,"standard_error":0.012853340048253684}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/50/base/tukey.json: -------------------------------------------------------------------------------- 1 | [18.947477023942344,19.15294793080232,19.700870349095588,19.906341255955564] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/50/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"50","throughput":null,"full_id":"join/with_paths!/50","directory_name":"join/with_paths!/50","title":"join/with_paths!/50"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/50/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":19.414948287728983,"upper_bound":19.462680218865852},"point_estimate":19.438206141624526,"standard_error":0.012132423563186862},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":19.40233183902803,"upper_bound":19.454959228790898},"point_estimate":19.426000121049903,"standard_error":0.012334084437656715},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.08167185510676893,"upper_bound":0.12535289202369412},"point_estimate":0.10042255474771986,"standard_error":0.011092125861836128},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":19.426243051314326,"upper_bound":19.46719379102478},"point_estimate":19.446668289476943,"standard_error":0.010438163429815258},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.09756567639644799,"upper_bound":0.1474537128520729},"point_estimate":0.12210502418416758,"standard_error":0.012853340048253684}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/50/new/tukey.json: -------------------------------------------------------------------------------- 1 | [18.947477023942344,19.15294793080232,19.700870349095588,19.906341255955564] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/60/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"60","throughput":null,"full_id":"join/with_paths!/60","directory_name":"join/with_paths!/60","title":"join/with_paths!/60"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/60/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":20.031539420449498,"upper_bound":20.067827894693313},"point_estimate":20.04955962181142,"standard_error":0.009187338252984985},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":20.032208549986546,"upper_bound":20.05986988593577},"point_estimate":20.044683085885246,"standard_error":0.007431034205332279},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.053782550831383974,"upper_bound":0.09360008591709089},"point_estimate":0.07484488997503606,"standard_error":0.009958874098230335},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":20.02964035955638,"upper_bound":20.06240900356098},"point_estimate":20.046035138268607,"standard_error":0.008355047854172269},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.07189719357926191,"upper_bound":0.11170263815190626},"point_estimate":0.09213880958579117,"standard_error":0.010230589192288527}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/60/base/tukey.json: -------------------------------------------------------------------------------- 1 | [19.697644431765383,19.847239715273183,20.246160471293983,20.395755754801783] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/60/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"60","throughput":null,"full_id":"join/with_paths!/60","directory_name":"join/with_paths!/60","title":"join/with_paths!/60"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/60/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":20.031539420449498,"upper_bound":20.067827894693313},"point_estimate":20.04955962181142,"standard_error":0.009187338252984985},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":20.032208549986546,"upper_bound":20.05986988593577},"point_estimate":20.044683085885246,"standard_error":0.007431034205332279},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.053782550831383974,"upper_bound":0.09360008591709089},"point_estimate":0.07484488997503606,"standard_error":0.009958874098230335},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":20.02964035955638,"upper_bound":20.06240900356098},"point_estimate":20.046035138268607,"standard_error":0.008355047854172269},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.07189719357926191,"upper_bound":0.11170263815190626},"point_estimate":0.09213880958579117,"standard_error":0.010230589192288527}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/60/new/tukey.json: -------------------------------------------------------------------------------- 1 | [19.697644431765383,19.847239715273183,20.246160471293983,20.395755754801783] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/70/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"70","throughput":null,"full_id":"join/with_paths!/70","directory_name":"join/with_paths!/70","title":"join/with_paths!/70"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/70/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":19.71945933895058,"upper_bound":19.76495566171273},"point_estimate":19.740241265119224,"standard_error":0.011564770945272591},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":19.70741839879313,"upper_bound":19.748369520659104},"point_estimate":19.7315453438249,"standard_error":0.010566493150420752},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.05928814880504152,"upper_bound":0.09402504952827762},"point_estimate":0.07099531288602616,"standard_error":0.008918582482179657},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":19.71836734218779,"upper_bound":19.747370247054246},"point_estimate":19.732756555106388,"standard_error":0.007411335885596188},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.07225505767175844,"upper_bound":0.16733264329716546},"point_estimate":0.1168099109379211,"standard_error":0.028172830748696948}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/70/base/tukey.json: -------------------------------------------------------------------------------- 1 | [19.403667379462398,19.542909845154732,19.914223087000956,20.05346555269329] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/70/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"70","throughput":null,"full_id":"join/with_paths!/70","directory_name":"join/with_paths!/70","title":"join/with_paths!/70"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/70/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":19.71945933895058,"upper_bound":19.76495566171273},"point_estimate":19.740241265119224,"standard_error":0.011564770945272591},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":19.70741839879313,"upper_bound":19.748369520659104},"point_estimate":19.7315453438249,"standard_error":0.010566493150420752},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.05928814880504152,"upper_bound":0.09402504952827762},"point_estimate":0.07099531288602616,"standard_error":0.008918582482179657},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":19.71836734218779,"upper_bound":19.747370247054246},"point_estimate":19.732756555106388,"standard_error":0.007411335885596188},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.07225505767175844,"upper_bound":0.16733264329716546},"point_estimate":0.1168099109379211,"standard_error":0.028172830748696948}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/70/new/tukey.json: -------------------------------------------------------------------------------- 1 | [19.403667379462398,19.542909845154732,19.914223087000956,20.05346555269329] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/80/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"80","throughput":null,"full_id":"join/with_paths!/80","directory_name":"join/with_paths!/80","title":"join/with_paths!/80"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/80/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":22.21474342943269,"upper_bound":22.26717804911939},"point_estimate":22.239391033130772,"standard_error":0.013334927007929076},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":22.19711578484222,"upper_bound":22.241075997228727},"point_estimate":22.206913896605794,"standard_error":0.013930039223746441},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.06775936105101507,"upper_bound":0.10112902689390417},"point_estimate":0.08558786974322247,"standard_error":0.008429983306212585},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":22.20037349649426,"upper_bound":22.235856949544285},"point_estimate":22.218176258293184,"standard_error":0.009055080975140566},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.08649999151386621,"upper_bound":0.17603962454697808},"point_estimate":0.13427856134828473,"standard_error":0.02283070863408658}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/80/base/tukey.json: -------------------------------------------------------------------------------- 1 | [21.8345191540337,22.00027825245446,22.442302514909823,22.608061613330584] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/80/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"80","throughput":null,"full_id":"join/with_paths!/80","directory_name":"join/with_paths!/80","title":"join/with_paths!/80"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/80/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":22.21474342943269,"upper_bound":22.26717804911939},"point_estimate":22.239391033130772,"standard_error":0.013334927007929076},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":22.19711578484222,"upper_bound":22.241075997228727},"point_estimate":22.206913896605794,"standard_error":0.013930039223746441},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.06775936105101507,"upper_bound":0.10112902689390417},"point_estimate":0.08558786974322247,"standard_error":0.008429983306212585},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":22.20037349649426,"upper_bound":22.235856949544285},"point_estimate":22.218176258293184,"standard_error":0.009055080975140566},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.08649999151386621,"upper_bound":0.17603962454697808},"point_estimate":0.13427856134828473,"standard_error":0.02283070863408658}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/80/new/tukey.json: -------------------------------------------------------------------------------- 1 | [21.8345191540337,22.00027825245446,22.442302514909823,22.608061613330584] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/90/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"90","throughput":null,"full_id":"join/with_paths!/90","directory_name":"join/with_paths!/90","title":"join/with_paths!/90"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/90/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":23.183434115887252,"upper_bound":23.26537306670057},"point_estimate":23.2222775905325,"standard_error":0.020808531508663967},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":23.17965615704228,"upper_bound":23.224116830697497},"point_estimate":23.19985360031064,"standard_error":0.013780655912563462},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.08553361122457065,"upper_bound":0.1465014313768216},"point_estimate":0.11569928002919269,"standard_error":0.01587664231641767},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":23.162017594140313,"upper_bound":23.20913695906692},"point_estimate":23.185717482073454,"standard_error":0.012017337116988267},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.14441475925900185,"upper_bound":0.26714046715123196},"point_estimate":0.20919682024346217,"standard_error":0.031249680496512368}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/90/base/tukey.json: -------------------------------------------------------------------------------- 1 | [22.674326348441063,22.9021547213024,23.509697048932626,23.73752542179396] -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/90/change/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.03923011039786837,"upper_bound":-0.035410712986937605},"point_estimate":-0.03724148610913092,"standard_error":0.0009625381284817253},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.039135385271006906,"upper_bound":-0.036593054995650465},"point_estimate":-0.03791009749901353,"standard_error":0.0006753070916080432}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/90/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"join","function_id":"with_paths!","value_str":"90","throughput":null,"full_id":"join/with_paths!/90","directory_name":"join/with_paths!/90","title":"join/with_paths!/90"} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/90/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":23.183434115887252,"upper_bound":23.26537306670057},"point_estimate":23.2222775905325,"standard_error":0.020808531508663967},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":23.17965615704228,"upper_bound":23.224116830697497},"point_estimate":23.19985360031064,"standard_error":0.013780655912563462},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.08553361122457065,"upper_bound":0.1465014313768216},"point_estimate":0.11569928002919269,"standard_error":0.01587664231641767},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":23.162017594140313,"upper_bound":23.20913695906692},"point_estimate":23.185717482073454,"standard_error":0.012017337116988267},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.14441475925900185,"upper_bound":0.26714046715123196},"point_estimate":0.20919682024346217,"standard_error":0.031249680496512368}} -------------------------------------------------------------------------------- /docs/benchmarks/join/with_paths!/90/new/tukey.json: -------------------------------------------------------------------------------- 1 | [22.674326348441063,22.9021547213024,23.509697048932626,23.73752542179396] -------------------------------------------------------------------------------- /examples/check_exists.rs: -------------------------------------------------------------------------------- 1 | use std::path::{Path, PathBuf}; 2 | 3 | use path_no_alloc::with_paths; 4 | 5 | fn check_exists(root: R1, paths: impl IntoIterator) 6 | where 7 | R1: AsRef, 8 | R2: AsRef, 9 | { 10 | for path in paths { 11 | with_paths!{ 12 | path = root / path 13 | }; 14 | 15 | if path.exists() { 16 | println!("{path:?} exists") 17 | } else { 18 | println!("{path:?} does not exist.") 19 | } 20 | } 21 | } 22 | 23 | fn main() { 24 | check_exists( 25 | "src", 26 | ["lib.rs", "tests.rs", "some-other-file.txt"] 27 | ); 28 | } 29 | --------------------------------------------------------------------------------