Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
fp:lab06 [2022/04/08 11:28] pdmatei |
fp:lab06 [2022/04/08 12:45] (current) pdmatei |
||
|---|---|---|---|
| Line 41: | Line 41: | ||
| xs.foldLeft(op(acc,x))(op) | xs.foldLeft(op(acc,x))(op) | ||
| } | } | ||
| - | } | + | |
| </code> | </code> | ||
| Line 54: | Line 54: | ||
| **6.2.** ''update'' creates a new list where the given position is modified with a new value: | **6.2.** ''update'' creates a new list where the given position is modified with a new value: | ||
| <code scala> | <code scala> | ||
| + | //Cons(1,Cons(2,Cons(3,FNil()))).update(9,1) = Cons(1,Cons(9,Cons(3,FNil()))) | ||
| def update(e: A, pos: Int): FList[A] | def update(e: A, pos: Int): FList[A] | ||
| </code> | </code> | ||