Skip to main content

oxilean_runtime/object/
rtobject_predicates_1.rs

1//! # RtObject - predicates Methods
2//!
3//! This module contains method implementations for `RtObject`.
4//!
5//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
6
7use super::rtobject_type::RtObject;
8
9impl RtObject {
10    /// Check if this is a heap-allocated object.
11    pub fn is_heap(&self) -> bool {
12        !self.is_inline()
13    }
14}