feat: add neq.
This commit is contained in:
parent
f1dcb31682
commit
b4574497e6
1 changed files with 1 additions and 1 deletions
|
@ -112,6 +112,7 @@ namespace Jellyfin.Plugin.SmartPlaylist.Lisp {
|
|||
this["<="] = _le;
|
||||
this["eq?"] = _eq;
|
||||
this["="] = _eq;
|
||||
this["!="] = _ne;
|
||||
this["abs"] = _abs;
|
||||
this["append"] = _append;
|
||||
this["begin"] = _begin;
|
||||
|
@ -123,7 +124,6 @@ namespace Jellyfin.Plugin.SmartPlaylist.Lisp {
|
|||
this["haskeys"] = _haskeys;
|
||||
this["getitems"] = _getitems;
|
||||
this["invoke"] = _invoke;
|
||||
//this[new Symbol("!=")] = _ne;
|
||||
}
|
||||
|
||||
private static T _agg<T>(Func<T, T, T> op, IList<T> args) {
|
||||
|
|
Loading…
Reference in a new issue