MCPcopy Create free account
hub / github.com/LaihoE/Python-demoparser / check_validity_props

Function check_validity_props

src/lib.rs:462–471  ·  view source on GitHub ↗
(names: &Vec<String>)

Source from the content-addressed store, hash-verified

460}
461
462pub fn check_validity_props(names: &Vec<String>) -> Vec<String> {
463 let mut unkown_props = vec![];
464 for name in names {
465 match TYPEHM.contains_key(name) {
466 true => {}
467 false => unkown_props.push(name.to_string()),
468 }
469 }
470 unkown_props
471}
472
473pub fn rank_id_to_name(id: i32) -> String {
474 match id {

Callers 2

parse_eventsMethod · 0.85
parse_ticksMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected