zsh-users
 help / color / mirror / code / Atom feed
From: Stephane Chazelas <stephane@chazelas.org>
To: Daniel Shahaf <d.s@daniel.shahaf.name>
Cc: Zsh Users <zsh-users@zsh.org>, zzapper <zsh@rayninfo.co.uk>
Subject: Re: alias with a parameter
Date: Fri, 16 Apr 2021 11:12:41 +0100	[thread overview]
Message-ID: <20210416101241.yv3zr55rziornpg3@chazelas.org> (raw)
In-Reply-To: <20210415203046.GB6669@tarpaulin.shahaf.local2>

2021-04-15 20:30:46 +0000, Daniel Shahaf:
> Bart Schaefer wrote on Thu, Apr 15, 2021 at 11:19:16 -0700:
> > On Wed, Apr 14, 2021 at 4:10 AM zzapper <zsh@rayninfo.co.uk> wrote:
> > >    if [ $# -gt 0 ] ; then
> > 
> > It's generally preferable to use [[ ... ]] instead of [ ... ] because
> > "[" is just another name for "test" and "]" is just one of its
> > arguments, whereas "[[" and "]]" are syntax tokens with parsing rules
> > for what appears between them.  However, since you're comparing
> > numbers, you could use (( $# > 0 )) here.
> 
> In general, «(( ${+foo[1]} ))» is faster than «(( ${#foo} ))», because
> the latter takes O(N) time where N is the length of the array, where's
> the former is O(1).


Beware that (( ${+foo[1]} )) approach doesn't work when the
ksharrays option is enabled. (though I'd expect one would
generally only use that option as part of the ksh emulation to
interpret ksh code, so that would likely not be a problem).

It also does't work for associative arrays.

FWIW, [[ -v foo[1] ]] seems to be slightly faster.

I'd still use (( $#foo )) or (( $#foo > 0 )) for legibility.

-- 
Stephane


  parent reply	other threads:[~2021-04-16 10:13 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-05 22:55 dukeofpurl
2021-04-06  0:16 ` lb
2021-04-06  3:40   ` Duke Normandin
2021-04-06 14:42     ` Greg Klanderman
2021-04-06  2:47 ` Grant Taylor
2021-04-07  7:05   ` Stephane Chazelas
2021-04-07 12:48     ` lb
2021-04-07 12:58       ` Peter Stephenson
2021-04-08  1:06       ` Grant Taylor
2021-04-08  1:25         ` Daniel Shahaf
2021-04-09  2:55           ` Grant Taylor
2021-04-09 22:49             ` Daniel Shahaf
2021-04-10  7:32               ` david rayner
2021-04-10 10:38                 ` Marc Chantreux
2021-04-14 11:10                   ` zzapper
2021-04-15 18:19                     ` Bart Schaefer
2021-04-15 19:56                       ` (prefix case terminators?) " Marc Chantreux
2021-04-15 23:52                         ` Bart Schaefer
2021-04-16  6:46                           ` Marc Chantreux
2021-04-15 20:30                       ` Daniel Shahaf
2021-04-16  7:34                         ` zapper
2021-04-16 10:12                         ` Stephane Chazelas [this message]
2021-04-10 16:30               ` Grant Taylor
2021-04-10 16:34                 ` Grant Taylor
2021-04-13 11:22                 ` Daniel Shahaf
2021-04-07 14:43     ` Daniel Shahaf
2021-04-07 14:54 Duke Normandin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210416101241.yv3zr55rziornpg3@chazelas.org \
    --to=stephane@chazelas.org \
    --cc=d.s@daniel.shahaf.name \
    --cc=zsh-users@zsh.org \
    --cc=zsh@rayninfo.co.uk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).