\internal Get if the node is red (nullptr or node with red flag).
| 122 | //! |
| 123 | //! Get if the node is red (nullptr or node with red flag). |
| 124 | static ASMJIT_INLINE bool rbIsRed(RbNode* node) noexcept { |
| 125 | return node && node->red; |
| 126 | } |
| 127 | |
| 128 | //! \internal |
| 129 | //! |
no outgoing calls
no test coverage detected