lambda set unwrapping

This commit is contained in:
Folkert 2023-05-02 22:19:34 +02:00
parent 0fa85fe91d
commit fb123b8990
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
2 changed files with 72 additions and 34 deletions

View file

@ -3298,6 +3298,17 @@ impl<
});
}
Layout::LambdaSet(lambda_set) => {
Self::ptr_read(
buf,
storage_manager,
layout_interner,
ptr_reg,
lambda_set.runtime_representation(),
dst,
);
}
_ => todo!("unboxing of {:?}", layout_interner.dbg(element_in_layout)),
}
}