(mc: &Mutation<'gc>, data: Vec<Value<'gc>>)
| 129 | impl<'gc> Value<'gc> { |
| 130 | #[inline] |
| 131 | pub fn array(mc: &Mutation<'gc>, data: Vec<Value<'gc>>) -> Self { |
| 132 | Value::List(Gc::new(mc, RefLock::new(List::array(data)))) |
| 133 | } |
| 134 | |
| 135 | #[inline] |
| 136 | pub fn equals(&self, other: &Value<'gc>) -> bool { |