From 17271a46b0d65bdeb40454942b436b0211477e88 Mon Sep 17 00:00:00 2001 From: Caleb Allen Date: Tue, 12 Mar 2024 13:40:51 +0000 Subject: [PATCH] Add newline for markdown bullet formatting --- src/Strapping.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Strapping.jl b/src/Strapping.jl index 4632594..8885283 100644 --- a/src/Strapping.jl +++ b/src/Strapping.jl @@ -22,6 +22,7 @@ found until the input table is exhausted. `Strapping.construct` utilizes the [StructTypes.jl](https://github.com/JuliaData/StructTypes.jl) package for determining the `StructTypes.StructType` trait of `T` and constructing an instance appropriately: + * `StructTypes.Struct`/`StructTypes.Mutable`: field reflection will be used to retrieve values from the input table row, with field customizations respected, like excluded fields, field-specific keyword args, etc. * `StructTypes.DictType`: each column name/value of the table row will be used as a key/value pair to be passed to the `DictType` constructor * `StructTypes.ArrayType`: column values will be "collected" as an array to be passed to the `ArrayType` constructor