You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
right now, some relatively brittle heuristic is in place to distinguish b/w reflect.Array and reflect.Slice.
we always create a slice by reflection when reading back a FITS file b/c there is no way to programmatically create a reflect.Value which happens to be of type-kind reflect.Array.
properly implement this when reflect.ArrayOf is available.
The text was updated successfully, but these errors were encountered:
right now, some relatively brittle heuristic is in place to distinguish b/w
reflect.Array
andreflect.Slice
.we always create a slice by reflection when reading back a
FITS
file b/c there is no way to programmatically create areflect.Value
which happens to be of type-kindreflect.Array
.properly implement this when
reflect.ArrayOf
is available.The text was updated successfully, but these errors were encountered: