Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
- Clojure
- C++
- C++
- C#
- Dart
- Fortran
- Go
- Groovy
- JS
- Java
- Java
- Java
- Kotlin
- Kotlin
- Lisp
- Lua
- PHP
- Pascal
- Perl
- Python
- Ruby
- Rust
- Rust
- Rust
- Rust
- Rust
(if (seq (filter odd? my-col))
"contains odds"
"no odds found")
(seq (filter pred-fn col)) returns nil when there are no matches, and nil is falsy.
if (std::any_of(items.begin(), items.end(), condition))
baz();
else
DoSomethingElse();
Calls condition(x) on each element in items until one returns true
found = .false.
do i=1,size(items)
if (items(i) == "asdf") then
found = .true.
exit
end if
end do
if (.not. found) call do_something
An alternative would be to check the value of the loop variable on exit - if it is larger than size(items), then the exit statement in the loop has not been executed.
for _, item := range items {
if item == "baz" {
fmt.Println("found it")
goto exit
}
}
{
fmt.Println("not found")
}
exit:
Go does not have a for...else construct, but a structured goto label works well.
println(items.any { it == "baz" } ? 'found' : 'not found')
const found = items.some(condition);
if (!found) doSomethingElse();
Predicate<Item> condition;
items.stream()
.filter(condition)
.findFirst()
.ifPresentOrElse(
item -> doSomething(i),
() -> doSomethingElse());
This requires at least Java 8, and uses a stream instead of a loop to get to the same result.
boolean b = false;
for (int i = 0; i<items.length; i++) {
if (items[i] == something) {
doSomething();
b = true;
}
}
if (!b)
doSomethingElse();
Java does not have a for else loop natively. Therefore we must use a boolean value to do something if no matches are found.
items.find { it == "baz" }
?.let { println("found it") }
?: println("never found it")
(loop for item in items
when (check-match item) return (do-something item)
finally (return (do-something-else))
check-match do-something and do-something-else are all invented function names.
The finally clause runs only if the return clause does not run.
The finally clause runs only if the return clause does not run.
local function list_cond(t,cond)
for _,v in ipairs(t) do
if cond(v)==true then return true end
end
return false
end
if list_cond(items,function(x) return x==0 end) then
print("did find 0")
else
print("didn't find 0")
end
function search(array $haystack, string $needle, callable $doSuccess, callable $doFail)
{
foreach ($haystack as $item) {
if ($item === $needle) {
$doSuccess();
return;
}
}
$doFail();
}
$items = ["foo", "bar", "baz", "qux"];
search(
$items,
"baz",
static function () {
echo "found it";
},
static function () {
echo "not found";
}
);
Found := False;
for Item in Items do
begin
if Item.MatchesCondition then
begin
Found := True;
Break;
end;
end;
if not Found then
DoSomethingElse;
my $found_match = 0;
foreach my $item (@items) {
if ($item eq 4) {
print "Found $item\n";
$found_match = 1;
last;
}
}
if (!$found_match) {
print "Didn't find what I was looking for\n";
}
items = ['foo', 'bar', 'baz', 'qux']
puts items.any?("baz") ? "found it" : "never found it"
if 'search: loop {
for i in items {
if i == &"qux" {
println!("found it");
break 'search false;
}
}
break 'search true
} {
println!("not found!");
}
for within a loop, which is only executed once
'label: {
for &item in items {
if item == "baz" {
println!("found");
break 'label;
}
}
println!("not found");
}
Rust allows you to label scopes, which can then be used together with "break 'label". We can (ab)use this to emulate "for else" loops.
let mut found = false;
for item in items {
if item == &"baz" {
println!("found it");
found = true;
break;
}
}
if !found {
println!("never found it");
}
Rust does not have a for...else construct, so we use a found variable.
items
.iter()
.find(|&&item| item == "rockstar programmer")
.or_else(|| {
println!("NotFound");
Some(&"rockstar programmer")
});
find returns the first Some(T) that satisfies condition, or returns None. We can use or_else to do action when None is returned. If you'd like to do something with found element, use and_then.