| 单词 |
unfold/fold |
| 释义 |
unfold/fold unfold/foldA program transformation where a recursive call to afunction is unfolded to an instance of the function's bodyand then later an instance of the function's body is replacedby a call. E.g.
sumdouble l = sum (double l)
double l = case l of[] -> []x:xs -> 2*x + double xs
==> (unfold double)
sumdouble l = sum (case l of[] -> []x:xs -> 2*x : double xs)
==> (distribute over case)
sumdouble l = case l of[] -> sum []x:xs -> sum (2*x : double xs)
==> (unfold sum)
sumdouble l = case l of[] -> 0x:xs -> 2*x + sum (double xs)
==> (fold sumdouble)
sumdouble l = case l of[] -> 0x:xs -> 2*x + sumdouble xs |
| 随便看 |
- jun 8, 2022
- jun 8, 2023
- jun 9
- jun 9, 2011
- jun 9, 2012
- jun 9, 2013
- jun 9, 2014
- jun 9, 2015
- jun 9, 2016
- jun 9, 2017
- jun 9, 2018
- jun 9, 2019
- jun 9, 2020
- jun 9, 2021
- jun 9, 2022
- jun 9, 2023
- jun activating binding protein
- jun activation domain binding protein
- junaeb
- junagadh
- junagadh agricultural university
- junagra
- jun auto
- junba
- junc
|