作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我有一个功能:
def f(x):
return {"x": x}
我可以创建一个高阶函数,其行为如下:
def augment(func):
def augmented_function(x):
return {**func(x), "metadata": "test"}
return augmented_function
然后
augment(f)(1)
将返回
{"x": 1, "metadata": "test"}
.
f
是一个异步协程,这个增强函数不起作用(
RuntimeWarning: coroutine 'f' was never awaited
和
TypeError: 'coroutine' object is not a mapping
) - 我希望增强函数是一个可以等待的协程:
async def f(x):
return {"x": x}
def augment_async(coro):
xxx
augment_async(f)(1) # Should return <coroutine object xxx>
await augment_async(f)(1) # Should return {"x": 1, "metadata": "test"}
有谁知道怎么写
augment_async
在这种情况下?
augment_async
如
await augment_async(f(1))
返回
{"x": 1, "metadata": "test"}
?
最佳答案
做内部函数就足够了async
,以便它可以 await
包装的功能:
def augment_async(func):
async def augmented_function(x):
return {**await func(x), "metadata": "test"}
return augmented_function
await augment_async(f)(1) # evaluates to {"x": 1, "metadata": "test"}
f(1)
,单层就足够了:
async def direct_async(coro):
return {**await coro, "metadata": "test"}
请注意,与
augment_async
不同,它为协程生成工厂,
direct_async
直接产生一个协程——它的结果可能是
await
只编过一次。
关于python - 异步协程上的高阶函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64115747/
在我的设置中,我试图有一个界面 Table继承自 Map (因为它主要用作 map 的包装器)。两个类继承自 Table - 本地和全局。全局的将有一个可变的映射,而本地的将有一个只有本地条目的映射。
Rust Nomicon 有 an entire section on variance除了关于 Box 的这一小节,我或多或少地理解了这一点和 Vec在 T 上(共同)变体. Box and Vec
我是一名优秀的程序员,十分优秀!