summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-js-std/vec-type-signatures.js
blob: 18cf9d6efd0fdbf032c8e98da460eb60cc850ebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// ignore-order

const FILTER_CRATE = "std";

const EXPECTED = [
    {
        'query': 'vec::intoiter<T> -> [T]',
        'others': [
            { 'path': 'std::vec::IntoIter', 'name': 'as_slice' },
            { 'path': 'std::vec::IntoIter', 'name': 'as_mut_slice' },
            { 'path': 'std::vec::IntoIter', 'name': 'next_chunk' },
        ],
    },
    {
        'query': 'vec::intoiter<T> -> []',
        'others': [
            { 'path': 'std::vec::IntoIter', 'name': 'as_slice' },
            { 'path': 'std::vec::IntoIter', 'name': 'as_mut_slice' },
            { 'path': 'std::vec::IntoIter', 'name': 'next_chunk' },
        ],
    },
];