(inputs: &[Box<dyn Value>])
| 370 | } |
| 371 | |
| 372 | pub fn date_day_of_year(inputs: &[Box<dyn Value>]) -> Box<dyn Value> { |
| 373 | let date = inputs[0].as_date().unwrap(); |
| 374 | let parsed_date = DateTime::from_timestamp(date, 0).unwrap(); |
| 375 | Box::new(IntValue::new(parsed_date.ordinal().into())) |
| 376 | } |
| 377 | |
| 378 | pub fn date_week_of_year(inputs: &[Box<dyn Value>]) -> Box<dyn Value> { |
| 379 | let date = inputs[0].as_date().unwrap(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…