[core] codegen/types: Add docs for NDArrayType::fields

This commit is contained in:
David Mak 2024-11-25 15:58:42 +08:00
parent f0b051f12d
commit 1aae870969
1 changed files with 2 additions and 1 deletions

View File

@ -102,12 +102,13 @@ impl<'ctx> NDArrayType<'ctx> {
Ok(())
}
// TODO: Move this into e.g. StructProxyType
/// Returns an instance of [`StructFields`] containing all field accessors for this type.
#[must_use]
fn fields(ctx: &'ctx Context, llvm_usize: IntType<'ctx>) -> NDArrayStructFields<'ctx> {
NDArrayStructFields::new(ctx, llvm_usize)
}
/// See [`NDArrayType::fields`].
// TODO: Move this into e.g. StructProxyType
#[must_use]
pub fn get_fields(