oxilean_runtime/object/rtobject_unit_group.rs
1//! # RtObject - unit_group Methods
2//!
3//! This module contains method implementations for `RtObject`.
4//!
5//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
6
7use super::functions::TAG_UNIT;
8use super::rtobject_type::RtObject;
9
10impl RtObject {
11 /// Create a unit value.
12 pub fn unit() -> Self {
13 RtObject {
14 bits: (TAG_UNIT as u64) << 56,
15 }
16 }
17}