We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45c39e0 commit b094f1aCopy full SHA for b094f1a
mathematica/mathematica.hpp
@@ -127,7 +127,7 @@ class Symbol {
127
inline explicit Symbol(std::string_view name);
128
129
template<typename... Ts>
130
- requires (!is_instance_of_v<ExpressIn, tail_t<Ts...>>)
+ requires(!is_instance_of_v<ExpressIn, tail_t<Ts...>>)
131
std::string operator[](Ts... ts);
132
133
@@ -138,7 +138,7 @@ class Symbol {
138
std::string name_;
139
};
140
141
-// Not usable at the first argument of `Set`. Use `At` instead.
+// Not usable at the first argument of `Set`. Use `Symbol`.
142
template<typename T, typename OptionalExpressIn = std::nullopt_t>
143
std::string Apply(std::string const& name,
144
T const& right,
0 commit comments