pub fn extract_bool_arg(
args: &[ValueWord],
index: usize,
fn_name: &str,
) -> Result<bool, String>Expand description
Extract a bool argument at index from args.
Returns the bool value on success, or an error string naming
fn_name and the position.