Skip to content
  • Andrew Martin's avatar
    Implement BoxedRep proposal · 6c2eb223
    Andrew Martin authored and Ben Gamari's avatar Ben Gamari committed
    This implements the BoxedRep proposal, refacoring the `RuntimeRep`
    hierarchy from:
    
    ```haskell
    data RuntimeRep = LiftedPtrRep | UnliftedPtrRep | ...
    ```
    
    to
    
    ```haskell
    data RuntimeRep = BoxedRep Levity | ...
    data Levity = Lifted | Unlifted
    ```
    
    Closes #17526.
    6c2eb223