-
# Bug report
I think mypy 1.6 has broken your plugin again. It seems like their API changes quite a lot. :(
## What's wrong
```python
my_partial = returns.curry.partial(foo, bar=baz(1))
re…
-
There is currently a method called `curryPartial` that lives in `/lib/curryPartial.js`.
It is incomplete and needs to be fixed!
Inspired by [this Codewars kata](https://codewars.com/kata/currying-…
-
Hi, while optimizing some code I noticed an unreasonable amount of the time is spent in `_check_sigspec`. I suspect this is the heavy usage of `inspect` methods in `curry` code.
I think this is no…
uriva updated
3 years ago
-
We need to chec how `pydantic` validates function arguments without calling the function itself: https://pydantic-docs.helpmanual.io/usage/validation_decorator/#validate-without-calling-the-function
…
-
https://leetcode-cn.com/problems/add-two-numbers/
给你两个 非空 的链表,表示两个非负的整数。它们每位数字都是按照 逆序 的方式存储的,并且每个节点只能存储 一位 数字。
请你将两个数相加,并以相同形式返回一个表示和的链表。
你可以假设除了数字 0 之外,这两个数都不会以 0 开头。
示例 1:
![image](https://user…
-
## Manchester
###### Dining
- [Pie & Ale](http://www.pieandalebar.co.uk)
- [Teacup](http://teacupandcakes.com)
- [BrewDog](http://www.brewdog.com/bars/manchester)
- [Sams Chop House](http://samschopho…
-
https://github.com/artempyanykh/marksman/blob/6e790e5eacc1c582a86dd1aae338c3728bab9608/LanguageServerProtocol/Server.fs#L656
This functionality is expected to update all of the file's references wh…
-
Hi @neerajrathore
I wish to Create a comprehensive guide to currying in JavaScript can be very beneficial for understanding functional programming concepts.
Proposed Structure
1. ****Introductio…
-
Determine if swapping the order of the arguments in `sequence` buys any better ergonomics due to currying, or if it's a pyrrhic victory due to the current overloading strategy (`sequence(IO::io)` woul…
jnape updated
4 years ago
-
```js
// 要求实现函数体
var foo = function(...args) { }
var f1 = foo(1,2,3); f1.getValue(); // 6 输出是参数的和
var f2 = foo(1)(2,3); f2.getValue(); // 6
var f3 = foo(1)(2)(3)(4); f3.getValue(); // 10
```
…