Skip to content

Instantly share code, notes, and snippets.

@pjlsergeant
Created August 16, 2012 10:14
Show Gist options
  • Select an option

  • Save pjlsergeant/3369058 to your computer and use it in GitHub Desktop.

Select an option

Save pjlsergeant/3369058 to your computer and use it in GitHub Desktop.
my $rs = bla->search({ foo => 'bar' });
die "Too many results" if $rs->count > 1;
return $rs->first;
---
my @r = bla->search({ foo => 'bar' });
die "Too many results" if @r > 1;
return $r[0];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment