Skip to content

Commit

Permalink
Update javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
squid233 committed Jan 26, 2024
1 parent b8f3980 commit bf4bec0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/main/java/overrun/marshal/struct/StructHandle.java
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,11 @@ public static Str ofString(Struct struct, String name) {
/**
* Creates an array struct handle.
*
* @param struct the struct
* @param name the name
* @param <T> the type of the array
* @param struct the struct
* @param name the name
* @param setterFactory the setter factory
* @param getterFactory the getter factory
* @param <T> the type of the array
* @return the struct handle
*/
public static <T> Array<T> ofArray(Struct struct, String name, BiFunction<SegmentAllocator, T, MemorySegment> setterFactory, Function<MemorySegment, T> getterFactory) {
Expand Down

0 comments on commit bf4bec0

Please sign in to comment.