英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

monad    音标拼音: [m'onæd]
n. 单位,单一体,单细胞生物

单位,单一体,单细胞生物

monad
一元

monad
n 1: (chemistry) an atom having a valence of one
2: a singular metaphysical entity from which material properties
are said to derive [synonym: {monad}, {monas}]
3: (biology) a single-celled microorganism (especially a
flagellate protozoan)

Monad \Mon"ad\, n. [L. monas, -adis, a unit, Gr. ?, ?, fr.
mo`nos alone.]
1. An ultimate atom, or simple, unextended point; something
ultimate and indivisible.
[1913 Webster]

2. (Philos. of Leibnitz) The elementary and indestructible
units which were conceived of as endowed with the power to
produce all the changes they undergo, and thus determine
all physical and spiritual phenomena.
[1913 Webster]

3. (Zool.) One of the smallest flagellate Infusoria; esp.,
the species of the genus {Monas}, and allied genera.
[1913 Webster]

4. (Biol.) A simple, minute organism; a primary cell, germ,
or plastid.
[1913 Webster]

5. (Chem.) An atom or radical whose valence is one, or which
can combine with, be replaced by, or exchanged for, one
atom of hydrogen.
[1913 Webster]

{Monad deme} (Biol.), in tectology, a unit of the first order
of individuality.
[1913 Webster]

63 Moby Thesaurus words for "monad":
I, ace, air, an existence, atom, atomic particles, being, body,
brute matter, building block, chemical element, component,
constituent, creature, critter, earth, electron, element,
elementary particle, elementary unit, entelechy, entity, fire,
fundamental particle, hyle, hypostasis, individual, ion, life,
material, material world, materiality, matter, meson, molecule,
natural world, nature, no other, none else, nothing else,
nought beside, nuclear particle, object, one, one and only,
organism, person, persona, personality, physical world, plenum,
proton, quark, something, soul, stuff, substance, substratum,
the four elements, thing, unit, unit of being, water

/mo'nad/ A technique from
{category theory} which has been adopted as a way of dealing
with {state} in {functional programming languages} in such a
way that the details of the state are hidden or abstracted out
of code that merely passes it on unchanged.

A monad has three components: a means of augmenting an
existing type, a means of creating a default value of this new
type from a value of the original type, and a replacement for
the basic application operator for the old type that works
with the new type.

The alternative to passing state via a monad is to add an
extra argument and return value to many functions which have
no interest in that state. Monads can encapsulate state, side
effects, exception handling, global data, etc. in a purely
lazily functional way.

A monad can be expressed as the triple, (M, unitM, bindM)
where M is a function on types and (using {Haskell} notation):

unitM :: a -> M a
bindM :: M a -> (a -> M b) -> M b

I.e. unitM converts an ordinary value of type a in to monadic
form and bindM applies a function to a monadic value after
de-monadising it. E.g. a state transformer monad:

type S a = State -> (a, State)
unitS a = \ s0 -> (a, s0)
m `bindS` k = \ s0 -> let (a,s1) = m s0
in k a s1

Here unitS adds some initial state to an ordinary value and
bindS applies function k to a value m. (`fun` is Haskell
notation for using a function as an {infix} operator). Both m
and k take a state as input and return a new state as part of
their output. The construction

m `bindS` k

composes these two state transformers into one while also
passing the value of m to k.

Monads are a powerful tool in {functional programming}. If a
program is written using a monad to pass around a variable
(like the state in the example above) then it is easy to
change what is passed around simply by changing the monad.
Only the parts of the program which deal directly with the
quantity concerned need be altered, parts which merely pass it
on unchanged will stay the same.

In functional programming, unitM is often called initM or
returnM and bindM is called thenM. A third function, mapM is
frequently defined in terms of then and return. This applies
a given function to a list of monadic values, threading some
variable (e.g. state) through the applications:

mapM :: (a -> M b) -> [a] -> M [b]
mapM f [] = returnM []
mapM f (x:xs) = f x `thenM` ( \ x2 ->
mapM f xs `thenM` ( \ xs2 ->
returnM (x2 : xs2) ))

(2000-03-09)


请选择你想看的字典辞典:
单词字典翻译
monad查看 monad 在百度字典中的解释百度英翻中〔查看〕
monad查看 monad 在Google字典中的解释Google英翻中〔查看〕
monad查看 monad 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • Monad | The Most Performant EVM Blockchain
    Monad is the most performant EVM-compatible blockchain with 10,000 TPS, 0 8s finality, and 0 4s block times Build beyond limits, explore decentralized apps, and join the next frontier of crypto
  • 详解函数式编程之Monad - 知乎
    最近终于搞清楚了Monad的本质,趁热记录下来,相信大家或多或少在编程语言中见过并用过,只不过不知道那是Monad罢了,也为了方便大家理解Monad,后面我会用各种主流语言中具有代表性的Monad作为例子,如果对理论不感兴趣可以直接跳到后面,寻找你熟悉语言
  • Monad
    Monad is the performant EVM blockchain with 10,000 TPS, 0 8s finality, and complete EVM compatibility Build beyond limits, explore decentralized apps, and join the next frontier of crypto—no rewrites, no compromises
  • Monad (philosophy) - Wikipedia
    The term monad (from Ancient Greek μονάς (monas) 'unity' and μόνος (monos) 'alone') [1] is used in some cosmic philosophy and cosmogony to refer to a most basic or original substance
  • 函数式编程如何消除副作用——Monad 入门与总结本文详细解释了函数式编程中的核心概念——单子 (monad),对于其特性 - 掘金
    本文详细解释了函数式编程中的核心概念——单子 (monad),对于其特性进行了详细的解释和分析,不论对于初学者还是实践都很有帮助。 内容涉及monad的定义、特性、解包、单子转换器等内容。
  • 五分钟理解什么是 Monad - 智子酱 - 博客园
    总而言之,Monad 就是一个装着值的盒子,并且可以用 fmap 函数来用一个普通函数生成另一个 Monad,并且还可以用 <*> 函数来用一个装在盒子(Functor)里的函数生成另一个 Monad,并且还可以用>>= 函数来用一个“处理数据并自动打包盒子的函数”生成另一个 Monad。
  • Monad中文社区
    Monad 主网正式上线 主网于 UTC 时间 14:00 正式启动,总供应量 1000 亿 MON,向 22 5 万名用户进行空投,开启高性能 EVM 新纪元。
  • 一文看清Monad:从技术亮点到现实压力,这个新晋公链的真正考验才刚开始_交易_空投_高性能
    Monad 由Monad Labs团队开发,核心团队成员均来自传统金融巨头Jump Trading,在高频交易系统开发方面拥有丰富经验。 在技术架构上,Monad引入了并行与异步执行机制,可同时处理大量不冲突的交易,从而显著提升交易吞吐量。
  • 测试网开放!Monad 空投潜力爆炸,最详细交互指南! - 知乎
    Monad 目前尚未公布代币经济学,但已确认有早期激励计划,这意味着本月即将开放的测试网交互、生态交互都可能成为未来空投的关键! 二、Monad 空投交互指南 1 参与 Monad 测试网(核心步骤) 测试网即将上线,想撸空投,务必参与! 1️⃣ 钱包准备





中文字典-英文字典  2005-2009