1use crate::interpreter::evaluator::Evaluator; 2 3pub fn std_is_inf(_: &mut Evaluator, x: f64) -> bool { 4 x.is_infinite() 5}