criterion 0.2.6

Statistics-driven micro-benchmarking library
Documentation
<!DOCTYPE html>
<html>

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Index - Criterion.rs</title>
    <style type="text/css">
        body {
            font: 14px Helvetica Neue;
            text-rendering: optimizelegibility;
        }

        .body {
            width: 960px;
            margin: auto;
        }

        a:link {
            color: #1F78B4;
            text-decoration: none;
        }

        h2 {
            font-size: 36px;
            font-weight: 300;
        }

        h3 {
            font-size: 24px;
            font-weight: 300;
        }

        #footer {
            height: 40px;
            background: #888;
            color: white;
            font-size: larger;
            font-weight: 300;
        }

        #footer a {
            color: white;
            text-decoration: underline;
        }

        #footer p {
            text-align: center
        }

        table {
            border-collapse: collapse;
        }

        table,
        th,
        td {
            border: 1px solid #888;
        }
    </style>
</head>

<body>
    <div class="body">
        <h2>Criterion.rs Benchmark Index</h2>
        See individual benchmark pages below for more details.
        <ul>
            {{~#each groups as |group|}}
            <li>{{> report_link group_report }}</li>
            {{~#if function_ids }}
            {{~#if values }}
            {{! Function ids and values}}
            <ul>
                <li>
                    <table>
                        <tr>
                            <th></th>
                            {{~#each function_ids as |func|}}
                            <th>{{> report_link}}</th>
                            {{~/each}}
                        </tr>
                        {{~#each individual_links as |row|}}
                        <tr>
                            <th>{{> report_link value}}</th>
                            {{~#each benchmarks as |bench|}}
                            <td>{{> report_link }}</td>
                            {{~/each}}
                        </tr>
                        {{~/each}}
                    </table>
                </li>
            </ul>
            {{~else}}
            {{! Function IDs but not values }}
            <ul>
                {{~#each function_ids as |func|}}
                <li>{{> report_link }}</li>
                {{~/each}}
            </ul>
            {{~/if}}
            {{~else}}
            {{! Values but not function ids }}
            <ul>
                {{~#each values as |val|}}
                <li>{{> report_link}}</li>
                {{~/each}}
            </ul>
            {{~/if}}
            {{~/each}}
        </ul>
    </div>
    <div id="footer">
        <p>This report was generated by
            <a href="https://github.com/bheisler/criterion.rs">Criterion.rs</a>, a statistics-driven benchmarking
            library in Rust.</p>
    </div>
</body>

</html>