- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我有一个库 xx,其命名空间为 xx.core
,我用纯 Clojure 编写它,打算同时针对 Clojure 和 ClojureScript。这样做的实际方法似乎是使用 lein-cljsbuild’s crossovers and conditional comments .到现在为止还挺好。 这个前提现在已经过时了。 lein-cljsbuild 已被弃用,取而代之的是 reader conditionals ,还有许多其他命名空间/宏 ClojureScript 增强功能。见updated answer以下。
假设 xx 有一堆变量,我希望它的用户能够在 Clojure 和 ClojureScript 中使用。这些可以分为三种类型的变量。
.cljs
分开。命名空间在他们自己的特殊
.clj
命名空间,所有宏必须与
xx.core
中的所有其他变量隔离开.
use-macro
或
require-macro
似乎只能访问宏。刚才我对此进行了测试;我尝试将所有内容(宏、type-1 vars 和 type-2 vars)简单地保存在一个单一的
xx/core.clj
文件,并在 ClojureScript 测试文件中使用
(:use-macro xx.core :only […])
引用它。然后编译器为 ClojureScript 文件引用的
WARNING: Use of undeclared Var
中的每个非宏变量发出
xx.core
消息。)
xx.core
,
xx.macro
, 和
xx.util
?…
最佳答案
这个问题的前提在几年前基本上已经过时了。通过这次更新,我正在尽自己的一份力量,不要让过时的信息污染网络。
与 Clojure 不同,ClojureScript 通常在与运行时分开的编译阶段编译宏。还有很多附带的复杂性。但是,由于多项改进,情况已大大改善。
从 version 1.7 in 2015 , Clojure 和 ClojureScript 现在支持 reader conditionals ,它允许在同一个 .cljc
中定义宏和函数Clojure、ClojureScript、Clojure CLR 或所有三个文件:#?(:clj …, :cljs …, :cljr …, :default …)
.仅此一项就可以缓解大部分问题。
此外,ClojureScript 本身现在对 ns
进行了多项增强。这为命名空间的用户消除了许多其他附带的复杂性。它们现在记录在 Differences from Clojure, § Namespaces 中。 .它们包括隐式宏加载、内联宏规范和自动别名 clojure
命名空间:
Implicit macro loading: If a namespace is required or used, and that namespace itself requires or uses macros from its own namespace, then the macros will be implicitly required or used using the same specifications. Furthermore, in this case, macro vars may be included in a :refer or :only spec. This oftentimes leads to simplified library usage, such that the consuming namespace need not be concerned about explicitly distinguishing between whether certain vars are functions or macros. For example:
(ns testme.core (:require [cljs.test :as test :refer [test-var deftest]]))
will result in test/is resolving properly, along with the test-var function and the deftest macro being available unqualified.Inline macro specification: As a convenience, :require can be given either :include-macros true or :refer-macros [syms…]. Both desugar into forms which explicitly load the matching Clojure file containing macros. (This works independently of whether the namespace being required internally requires or uses its own macros.) For example:
(ns testme.core
(:require [foo.core :as foo :refer [foo-fn] :include-macros true]
[woz.core :as woz :refer [woz-fn] :refer-macros [apple jax]]))is sugar for
(ns testme.core
(:require [foo.core :as foo :refer [foo-fn]]
[woz.core :as woz :refer [woz-fn]])
(:require-macros [foo.core :as foo]
[woz.core :as woz :refer [apple jax]]))Auto-aliasing
clojure
namespaces: If a non-existingclojure.*
namespace is required or used and a matching cljs.* namespace exists, thecljs.*
namespace will be loaded and an alias will be automatically established from theclojure.*
namespace to thecljs.*
namespace. For example:(ns testme.core (:require [clojure.test]))
will be automatically converted to
(ns testme.core (:require [cljs.test :as clojure.test]))`
关于macros - 双 Clojure/ClojureScript 库设计和宏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13835031/
是否可以传递带有宏触发器的字符串作为宏参数?请参阅下面的示例代码: options mprint; %let string5='%abc%def%'; %macro test(string); dat
我意识到我的代码的某个部分由看起来相似的方法组组成(就像我有多个三重奏:一个辅助函数被另外两个为程序员准备的函数调用)。我正在尝试编写一个宏来为我定义这三个函数,这样我需要做的就是调用宏。但我的尝试导
这个问题在这里已经有了答案: What can you do with Lisp macros that you can't do with first-class functions? (8 个回答
在 haxe 宏中,对于每个表达式,我们可以以 http://api.haxe.org/haxe/macro/Position.html 的形式获取它的位置。 : { file:String,
如果我评价 (def ^:macro my-defn1 #'defn) 定义了一个名为“my-defn1”的宏,我可以像使用“defn”一样使用它。 但是,如果我改为求值 (if true (de
我想知道这段代码输出背后的原因。我想不出答案。 #define f(a,b) a##b #define g(a) #a #define h(a) g(a) void main() { print
我正在尝试编写一个宏,该宏扩展为具有解构的 let 形式。我的问题是我想拥有以 let 形式定义的符号列表,包括通过解构获得的符号列表。 用例 我试图排除这种行为,例如验证: (let [a (foo
这段代码: macro FL(message) return @sprintf("%s:%d | %s", @__FILE__, @__LINE__, message) # line 2 en
此宏的目的是创建一个宏,该宏为访问关联列表的某个键提供名称。 (defmacro generate-accessor (key-symbol prefix) (let ((mac-name
在mcpp.exe --help Options available with only -@std (default) option: -@compat Expand recursive ma
鉴于: (define-syntax (test stx) (syntax-case stx () [(_ body ...) (with-syntax ([body0 (pro
Doug Hoyte 在他对 Let Over Lambda 的介绍中将 symb 函数定义为使用宏进行元编程的基本实用程序: 在剪辑中: (defun mkstr (&rest args) (w
我的代码需要两种模式,debug 和 verbose。我在头文件中将它们定义为, #define verbose TRUE #define debug TRUE 到目前为止,在我的代码中,我一直在使用
Set-macro-character 有一个名为 non-terminating-p 的可选参数。好像是用来表示读完宏字符后是否要读另一个字符,但是reader algorithm似乎忽略了这个论点
我一直在搜索,但几乎找不到关于 LibreOffice Basic 的信息 我有点习惯在 excel 中编写宏,但这次需要做一个循环,直到我到达第一个空列并且它需要在 libreoffice 中。 在
我正在尝试编写一个调用某些函数的宏。这些函数只能由宏使用,因此我将它们放在包装宏的 letfn 中。伪代码: (letfn [(fn-a [] ...) (fn-b [] ...)
我发现对于任何在 clojure.tools.macro 中编写类似 defn 的宏的人来说,这将是一个很棒的工具。图书馆:name-with-attributes功能。文档字符串说: To be u
假设: (defmacro testing (&optional var) `(list 'this 'is ,@(when (consp var) `('a 'list)))
在 SBCL 中,我可以使用以下内容获取函数的文档字符串: (documentation #'mapcar t) 但是,我不明白如何获取宏的文档字符串。例如,给定宏: (defmacro with-l
想了解 undef 和将宏定义为 0 之间的区别。谢谢。 最佳答案 #define MACRO 0 定义预处理器标记 MACRO成为文字 0 #undef MACRO 删除预处理器标记 MACRO 的
我是一名优秀的程序员,十分优秀!