DAG-Runner

码农软件 · 软件分类 · 其他开发相关 · 2019-10-22 19:59:32

软件介绍

DAG-Runner是一个自动化将相互关联的函数串联在一起的包,有了它大家就可以专心写Clojure函数,把结果串起来或者散开的工作就由DAG-runner自动完成啦,做复杂的数字运算特别好用

示例代码:

(defn funA [{:keys [x y]}]
  {:z (+ x y)
   :w (- x y)})

(defn funB
  "this function would take :w of the output from funA."
  [{:keys [w a]}]
  {:b (* w a)})

(defn funC
  "this function would take :z from funA and :b from funB and the
  output :u :v are the ultimate output that we care about."
  [{:keys [b z]}]
  {:u (* b z)
   :v (- b z)}
  )

本文地址:https://codercto.com/soft/d/17340.html

Dive Into Python 3

Dive Into Python 3

Mark Pilgrim / Apress / 2009-11-6 / USD 44.99

Mark Pilgrim's Dive Into Python 3 is a hands-on guide to Python 3 (the latest version of the Python language) and its differences from Python 2. As in the original book, Dive Into Python, each chapter......一起来看看 《Dive Into Python 3》 这本书的介绍吧!

在线进制转换器
在线进制转换器

各进制数互转换器

随机密码生成器
随机密码生成器

多种字符组合密码

URL 编码/解码
URL 编码/解码

URL 编码/解码