Is the identity function pre-defined in Scheme?
相关问题
- Generating powerset in one function, no explicit r
- What is fixed point?
- Using StoreGeneratedPattern.Identity with database
- Python pickling keep object identity
- unfold function in scheme
相关文章
- SQL identity (1,1) starting at 0
- Does learning one Lisp help in learning the other?
- What is the definition of “natural recursion”?
- Using custom user instead of ASP.NET IdentityUser
- How do I define a sub environment in scheme?
- Why is it legal in a function definition to make s
- SQL Server - Get Inserted Record Identity Value wh
- How to split list into evenly sized chunks in Rack
Yes, but it's called
values
. Actually, that's usually used for multiple values, so it's a generalized multiple-arity identity function.In DrRacket I know that
identity
works. For example,(identity 12) => 12