Przeczytałem wszystkie stopnie dotyczące ograniczenia wartości w F #, ale nadal nie rozumiem tego. Mam następujący kod:Ograniczenie wartości F #
type tree<'a> =
| Nil
| Node of (tree<'a> * 'a * tree<'a>)
let rec flatten = function
| Nil -> []
| Node (Nil, b, Nil) -> [b]
| Node (l, h, p) -> List.concat [(flatten l);[h];(flatten p)]
i kompilator pokazuje błąd:
error FS0030: Value restriction. The value 'it' has been inferred to have generic type
val it : '_a list
Either define 'it' as a simple data term, make it a function with explicit arguments or, if you do not intend for it to be generic, add a type annotation.
Czy ktoś może mi pomóc? Dziękuję bardzo;)
Czy możesz podać kod wywołujący spłaszczyć? Mogę skompilować i uruchomić tę próbkę tylko dobrze – JaredPar
, ale kiedy dzwonię spłaszczam Nill ;; tam jest problem. – 877