过滤记录的过滤器的另一个名称是什么?

发布于 2024-12-05 17:05:43 字数 214 浏览 0 评论 0原文

我正在开发一个小型库,使网站用户能够搜索和过滤显示的记录。我目前正在设计 API,但我需要为最终用户使用的此类过滤器提供一个好的替代名称。

我们的库集合大致符合现有的 Zend 命名约定。也就是说,/Filter 命名空间用于可附加到表单元素以过滤变量内容的过滤器类型。因此,我需要为用于过滤记录或对象集合的过滤器类型提供另一个名称。

I am working on a small library that enables users of a website to search and filter the records that are displayed. I'm currently designing the API but I need a good alternative name for these sort of filters that end-users use.

Our collection of libraries roughly conforms to the existing Zend naming conventions. That is, <Library>/Filter namespace is used for the kind of filters that you can attach to form elements to filter the contents of variables. So, I need another name for the kind of filters that you use to filter records or collections of objects.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

朕就是辣么酷 2024-12-12 17:05:43

谓词

通俗地说,谓词是一个可能为真或为假的语句,具体取决于其变量的值。它可以被认为是返回 true 或 false 值的运算符或函数。例如,谓词有时用于指示集合成员资格:在谈论集合时,有时不方便或不可能通过列出集合的所有元素来描述集合。因此,谓词 P(x) 将为 true 或 false,具体取决于 x 是否属于集合。

Predicate

Informally, a predicate is a statement that may be true or false depending on the values of its variables. It can be thought of as an operator or function that returns a value that is either true or false. For example, predicates are sometimes used to indicate set membership: when talking about sets, it is sometimes inconvenient or impossible to describe a set by listing all of its elements. Thus, a predicate P(x) will be true or false, depending on whether x belongs to a set.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文