FilterMatch

public extension FilterMatch
  • Cast constructor, converting any binary integer to a FilterMatch.

    Declaration

    Swift

    @inlinable
    init!<I>(_ raw: I) where I : BinaryInteger

    Parameters

    raw

    The raw integer value to initialise the enum from

  • The filter matches some items, gtk_filter_match() may return true or false

    Declaration

    Swift

    static let some: GtkFilterMatch
  • The filter does not match any item, gtk_filter_match() will always return false.

    Declaration

    Swift

    static let none: GtkFilterMatch
  • all

    The filter matches all items, gtk_filter_match() will alays return true.

    Declaration

    Swift

    static let all: GtkFilterMatch