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.

Using google.protobuf.Any in python file

I have such .proto file syntax = "proto3"; import "google/protobuf/any.proto"; message Request { google.protobuf.Any request_parameters = 1; } How …

python protocol-buffers any
How to create a Map[String,String] from Map[String, Any] in Scala?

New to scala - How to create a Map[String,String] from Map[String, Any] The values of the Map[…

scala map any
PostgreSQL - array value must start with "{" or dimension information

I’m trying to create a function which will filter based on ANY in a supplied text array. The function …

sql arrays postgresql any
Check if any element of Eigen::Matrix is different from zero

I have an Eigen::Matrix<double, Dynamic, Dynamic>, and I need to check if any of its elements …

c++ matrix eigen any
What does Any() mean in this LINQ query?

What is the Any() doing in the following query? context.Customers .Include("InternetSales") .Where(c => c.InternetSales.Any()) .Take(100); …

c# linq any
SQLite syntax for operator “ANY”

I'm trying execute this query in SQLite: SELECT * FROM customers WHERE rating = ANY (SELECT rating FROM customers WHERE city = 'Rome'); …

sql sqlite select any