Many other languages have similar mechanisms to the Java streams API. Scheme, and probably Lisp in general, is well known for it. Then we have Ruby, Crystal, Python, D, JavaScript...
I can't think of other languages that have something exactly like LINQ, though, unless you count SQL.
Off topic question about LINQ.. when should you use it? C# can be written in s few different ways. Some linq type solutions can be elegant but if the next person updating expects classic c# style it probably isn't the best option
List<Integer> numbers = number_list.stream().filter(number -> number > 3).collect(Collectors.toList())
boolean isTrue = Stream.of(boolean_array).anyMatch(Function.identity());
String checkForNull = Optional.ofNullable(some_xml).map(SomeXml::getSomeField).map(SomeField::GetSomeAttribute).orElse("nothing here");