Make Field constructor functions generic #8
No reviewers
Labels
No Label
bug
documentation
duplicate
enhancement
good first issue
help wanted
infrastructure
invalid
question
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: bit-badger/BitBadger.Documents#8
Loading…
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
obj
if 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 theField
constructor functions generic will allow them to take any object type, and these functions handle the conversion toobj
(forIn
andInArray
; others work transparently).