class EL_CONTAINS_WORDS_CONDITION
Contains words search term
note
description: "Contains words search term"
author: "Finnian Reilly"
copyright: "Copyright (c) 2001-2022 Finnian Reilly"
contact: "finnian at eiffel hyphen loop dot com"
license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
date: "2022-11-15 19:56:07 GMT (Tuesday 15th November 2022)"
revision: "8"
class
EL_CONTAINS_WORDS_CONDITION [G -> EL_WORD_SEARCHABLE]
inherit
EL_QUERY_CONDITION [G]
create
make
feature {NONE} -- Initialization
make (a_words: EL_WORD_TOKEN_LIST)
--
do
words := a_words
if words.is_empty then
create searcher.make ("***")
else
create searcher.make (words)
end
end
feature -- Access
words: EL_WORD_TOKEN_LIST
feature -- Status query
met (item: G): BOOLEAN
--
do
if words.count = 1 then
Result := item.word_token_list.has (words [1])
else
Result := searcher.index (item.word_token_list, 1) > 0
end
end
feature {NONE} -- Implementation
searcher: EL_BOYER_MOORE_SEARCHER_32
end