Top "Any" questions

"Any" means "at least one". Use this tag for questions that deal with testing elements in a collection to see if at least one of them passes a condition.

any() function in Python with a callback

The Python standard library defines an any() function that Return True if any element of the iterable is true. If …

python functional-programming callback any
Check if list of objects contain an object with a certain attribute value

I want to check if my list of objects contain an object with a certain attribute value. class Test: def __…

python list attributes any
Python, Press Any Key To Exit

So, as the title says, I want a proper code to close my python script. So far, I've used input(…

python python-2.7 key any
Difference between IN and ANY operators in SQL

What is the difference between IN and ANY operators in SQL?

sql operators any
type any? has no subscript members

I want to get Addresses from profile dictionary,but I got the error "type any? has no subscript members" var …

arrays swift dictionary any anyobject
Good way to get *any* value from a Java Set?

Given a simple Set<T>, what is a good way (fast, few lines of code) to get any …

java set any
Linq To Entities - Any VS First VS Exists

I am using Entity Framework and I need to check if a product with name = "xyz" exists ... I think I …

entity-framework ef-code-first exists any
How to check if any value of a column is in a range (in between two values) in Pandas?

I have a DataFrame and I would like to check if any of the values (v) of a column satisfies …

python pandas any
postgreSQL - in vs any

I have tried both 1) smthng = any(select id from exmplTable) 2) smthng in (select id from exmplTable) and I am getting …

postgresql operation any sql-in
Protobuf 3.0 Any Type pack/unpack

I would like to know how to transform a Protobuf Any Type to the original Protobuf message type and vice …

protocol-buffers pack unpack any