class
MPD::Filter
- MPD::Filter
- Reference
- Object
Defined in:
crystal_mpd/filter.crConstructors
- .eq(tag : String, value : String) : Filter
- .match(tag : String, value : String) : Filter
- .new
- .not_eq(tag : String, value : String) : Filter
- .not_match(tag : String, value : String) : Filter
Class Method Summary
- .contains(tag : String, value : String)
- .contains_ci(tag : String, value : String)
- .contains_cs(tag : String, value : String)
- .eq_ci(tag : String, value : String)
- .eq_cs(tag : String, value : String)
- .not(expr : Filter)
- .not_contains(tag : String, value : String)
- .not_contains_ci(tag : String, value : String)
- .not_contains_cs(tag : String, value : String)
- .not_eq_ci(tag : String, value : String)
- .not_eq_cs(tag : String, value : String)
- .not_starts_with(tag : String, value : String)
- .not_starts_with_ci(tag : String, value : String)
- .not_starts_with_cs(tag : String, value : String)
- .starts_with(tag : String, value : String)
- .starts_with_ci(tag : String, value : String)
- .starts_with_cs(tag : String, value : String)
Instance Method Summary
- #contains(tag : String, value : String)
- #contains_ci(tag : String, value : String)
- #contains_cs(tag : String, value : String)
-
#eq(tag : String, value : String)
== / !=
- #eq_ci(tag : String, value : String)
- #eq_cs(tag : String, value : String)
-
#match(tag : String, value : String)
=~ / !~
-
#not(expr : Filter)
Logical NOT for nested filters
- #not_contains(tag : String, value : String)
- #not_contains_ci(tag : String, value : String)
- #not_contains_cs(tag : String, value : String)
- #not_eq(tag : String, value : String)
- #not_eq_ci(tag : String, value : String)
- #not_eq_cs(tag : String, value : String)
- #not_match(tag : String, value : String)
- #not_starts_with(tag : String, value : String)
- #not_starts_with_ci(tag : String, value : String)
- #not_starts_with_cs(tag : String, value : String)
- #starts_with(tag : String, value : String)
- #starts_with_ci(tag : String, value : String)
- #starts_with_cs(tag : String, value : String)
-
#to_s : String
Returns a nicely readable and concise string representation of this object, typically intended for users.
Constructor Detail
Class Method Detail
Instance Method Detail
def to_s : String
#
Description copied from class Object
Returns a nicely readable and concise string representation of this object, typically intended for users.
This method should usually not be overridden. It delegates to
#to_s(IO)
which can be overridden for custom implementations.
Also see #inspect
.