Make Field constructor functions generic #8
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "v-four-rc5"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
F# can upcast types to
objif those types are used in place. However, astring seq(IEnumerable<string>in C#) cannot be upcast to anobj seq(IEnumerable<object>) without mapping each item in the sequence. Making theFieldconstructor functions generic will allow them to take any object type, and these functions handle the conversion toobj(forInandInArray; others work transparently).