Interface Boxed<T>

Type Parameters:
T - The underlying type, usually a Truffle Value.

@Internal public interface Boxed<T>
Internal interface to allow integration with Graal Polyglot languages that marks a type as boxing or wrapping a foreign value of another language.

NOTE: regarded as internal and not for public consumption.

Since:
5.0.0
  • Method Summary

    Modifier and Type
    Method
    Description
    Unboxes the type.
  • Method Details

    • $unbox

      T $unbox()
      Unboxes the type.
      Returns:
      The unboxed type.