Lines Matching defs:ref
21 static ref MAP_EMPTY: HashMap<char, u32> = HashMap::new(); constant
22 static ref MAP: HashMap<char, u32> = { constant
218 static ref MAP_VEC_EMPTY: Vec<(char, u32)> = vec![]; constant
219 static ref MAP_VEC: Vec<(char, u32)> = vec![ constant
255 static ref MAP_EXISTING_EMPTY: HashMap<char, u32> = HashMap::new(); constant
256 static ref MAP_EXISTING: HashMap<char, u32> = { constant
262 static ref MAP_EXTENSION_EMPTY: Vec<(char, u32)> = vec![]; constant
263 static ref MAP_EXTENSION: Vec<(char, u32)> = vec![('c', 30), ('e', 50), ('f', 60), ('d', 40),]; constant
315 static ref SET_EMPTY: HashSet<char> = HashSet::new(); constant
316 static ref SET: HashSet<char> = { constant
379 static ref SET_VEC_EMPTY: Vec<char> = vec![]; constant
380 static ref SET_VEC: Vec<char> = vec!['b', 'a', 'c', 'e', 'f', 'd',]; constant
409 static ref SET_EXISTING_EMPTY: HashSet<char> = HashSet::new(); constant
410 static ref SET_EXISTING: HashSet<char> = { constant
416 static ref SET_EXTENSION_EMPTY: Vec<char> = vec![]; constant
417 static ref SET_EXTENSION: Vec<char> = vec!['c', 'e', 'f', 'd',]; constant
469 static ref SET_A: HashSet<char> = ['a', 'b', 'c', 'd'].iter().cloned().collect(); constant
470 static ref SET_B: HashSet<char> = ['a', 'b', 'e', 'f'].iter().cloned().collect(); constant
471 static ref SET_DIFF_AB: HashSet<char> = ['c', 'd'].iter().cloned().collect(); constant
472 static ref SET_DIFF_BA: HashSet<char> = ['e', 'f'].iter().cloned().collect(); constant
473 static ref SET_SYMM_DIFF_AB: HashSet<char> = ['c', 'd', 'e', 'f'].iter().cloned().collect(); constant
474 static ref SET_INTERSECTION_AB: HashSet<char> = ['a', 'b'].iter().cloned().collect(); constant
475 static ref SET_UNION_AB: HashSet<char> = constant