Skip to content

Commit

Permalink
Implement isIntegerObject
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusDoe committed Feb 8, 2024
1 parent 8f906ee commit ea6ce0a
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,11 @@ private long isBytes(final long oop) {
return nativeObjectCheck(oop, NativeObject::isByteType);
}

@SuppressWarnings("unused")
private long isIntegerObject(final long oop) {
return returnBoolean(objectRegistryGet(oop) instanceof Long);
}

@SuppressWarnings("unused")
private long isPointers(final long oop) {
return instanceOfCheck(oop, AbstractPointersObject.class);
Expand Down

0 comments on commit ea6ce0a

Please sign in to comment.