Skip to content
Snippets Groups Projects
Commit 6c2eb223 authored by Andrew Martin's avatar Andrew Martin Committed by Ben Gamari
Browse files

Implement BoxedRep proposal

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.
parent dad87210
No related branches found
No related tags found
No related merge requests found
Showing
with 404 additions and 143 deletions
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment