在“普通”代码中,可以使用klass.is_a?(Reference.class)
检查某个类是否已使用class
或struct
实现:
Array.is_a?(Reference.class) #=> true
Tuple.is_a?(Reference.class) #=> false
但是,我似乎无法弄清楚如何在宏中重新打开所述类/结构。
例如:如果我将Array
类传递给我的宏,我需要生成以class Array
开头的代码,而对于Tuple
,则需要struct Tuple
我一遍又一遍地阅读docs for Crystal::Macros,但我无法提供能够满足我需要和编译的代码。
答案 0 :(得分:2)
您可以使用<
来检查:
class MyClass
end
struct MyStruct
end
p {{ MyClass < Reference }} # => true
p {{ MyClass < Struct }} # => false
p {{ MyStruct < Struct }} # => true
p {{ MyStruct < Reference }} # => false
但是,我建议要求用户在所述类型中使用宏。这样你就不需要重新打开一个类/结构体,因为你已经在它里面了。
这是标准库和语言中实现的内容。例如:
class Foo
# it's not "include Foo, Bar" where "include" reopens the type
include Bar
# It's not "JSON.mapping Foo, ..." where JSON.mapping reopens the type
JSON.mapping(...)
end
答案 1 :(得分:1)