You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
interface in interfaces_available ||error("No interface found with name $interface -- must be one of `$interfaces_available`")
122
127
f =define_interface_method(Val(interface))
123
-
isnothing(f) &&error("No interface found with name $interface -- must be one of `$define_interfaces_available`")
124
128
push!(output.args, f(T; omit, kwargs...))
125
129
end
126
130
return output
@@ -132,7 +136,7 @@ end
132
136
Defines the `interface` for objects of type `T`
133
137
134
138
# Arguments
135
-
`name` must be one of $(define_interfaces_available), with `name` value `f` corresponding to the interface definition function `\$f_interface` (e.g., `array` => `array_interface`).
139
+
`name` must be one of $(default_define_interfaces), with `name` value `f` corresponding to the interface definition function `\$f_interface` (e.g., `array` => `array_interface`).
136
140
137
141
The `key=value` pairs will be forwarded to the corresponding interface definition method. In particular, specifying `omit=func1` or `omit=[func1,func2, ..., funcn]` will omit `func1`, ..., `funcn` from being forwarded by this macro.
interface in available_interfaces ||error("No interface found with name $interface -- must be one of `$available_interfaces`")
326
+
316
327
f =forward_interface_method(Val(interface))
317
-
isnothing(f) &&error("No interface found with name $interface -- must be one of `$forward_interfaces_available`")
318
328
319
329
ifinterface_at_macroexpand_time(f)
320
330
isnothing(field_funcs) &&error("Expected `field` from keyword arguments for interface `$interface`")
@@ -341,7 +351,7 @@ end
341
351
Forwards the methods defined for `interface` to objects of type `T`
342
352
343
353
# Arguments
344
-
`name` must be one of $(forward_interfaces_available), with `name` value `f` corresponding to the interface definition function `\$f_interface` (e.g., `array` => `array_interface`).
354
+
`name` must be one of $(default_forward_interfaces), with `name` value `f` corresponding to the interface definition function `\$f_interface` (e.g., `array` => `array_interface`).
345
355
346
356
If `name` is either `getfields` or `setfields`, then the `field` keyword argument is ignored
0 commit comments