Groups | Search | Server Info | Login | Register
Groups > comp.lang.awk > #10032
| Path | csiph.com!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail |
|---|---|
| From | dave_thompson_2@comcast.net |
| Newsgroups | comp.lang.awk |
| Subject | Re: nested ternary discovery |
| Date | Sun, 12 Oct 2025 20:58:03 -0400 |
| Organization | A noiseless patient Spider |
| Lines | 10 |
| Message-ID | <hbjoeklk2lcsa56c809dgn3aodh9r5rtb6@4ax.com> (permalink) |
| References | <10c866d$2lhr4$1@dont-email.me> <68e8bf90$0$671$14726298@news.sunsite.dk> <10cdgkc$nu0u$2@dont-email.me> |
| MIME-Version | 1.0 |
| Content-Type | text/plain; charset=us-ascii |
| Content-Transfer-Encoding | 7bit |
| Injection-Date | Mon, 13 Oct 2025 00:58:14 +0000 (UTC) |
| Injection-Info | dont-email.me; posting-host="1addef74e0af23b3efb28f5100d916b4"; logging-data="1986435"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+H94+w9T/W7oxd3l9IfJ3DzYfx5vH8ge0=" |
| Cancel-Lock | sha1:4m+ep9I2TPjvKMB9gl6o0NDHHpY= |
| X-Newsreader | Forte Agent 3.3/32.846 |
| Xref | csiph.com comp.lang.awk:10032 |
Show key headers only | View raw
On Sat, 11 Oct 2025 11:55:57 -0000 (UTC), Mike Sanders
<porkchop@invalid.foo> wrote:
> scale = (unit == "T") ? 1e12 :
> (unit == "B") ? 1e9 :
> (unit == "M") ? 1e6 :
> (unit == "K") ? 1e3 : 1
>
scale = 1000 ^ index("KMBT",unit)
Back to comp.lang.awk | Previous | Next — Previous in thread | Next in thread | Find similar
nested ternary discovery Mike Sanders <porkchop@invalid.foo> - 2025-10-09 11:27 +0000
Re: nested ternary discovery Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-09 17:09 +0200
Re: nested ternary discovery Mike Sanders <porkchop@invalid.foo> - 2025-10-10 19:38 +0000
Re: nested ternary discovery Mike Sanders <porkchop@invalid.foo> - 2025-10-11 11:46 +0000
Re: nested ternary discovery Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-11 16:58 +0000
Re: nested ternary discovery Mike Sanders <porkchop@invalid.foo> - 2025-10-12 03:47 +0000
Re: nested ternary discovery Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-12 01:54 +0200
Re: nested ternary discovery Mike Sanders <porkchop@invalid.foo> - 2025-10-12 03:49 +0000
Re: nested ternary discovery Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-09 16:59 +0000
Re: nested ternary discovery mack@the-knife.org (Mack The Knife) - 2025-10-10 08:10 +0000
Re: nested ternary discovery Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-10 13:06 +0200
Re: nested ternary discovery Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-10 17:04 +0000
Re: nested ternary discovery mack@the-knife.org (Mack The Knife) - 2025-10-11 17:44 +0000
Re: nested ternary discovery Kaz Kylheku <643-408-1753@kylheku.com> - 2025-10-11 18:46 +0000
Re: nested ternary discovery mack@the-knife.org (Mack The Knife) - 2025-10-13 08:07 +0000
Re: nested ternary discovery Mike Sanders <porkchop@invalid.foo> - 2025-10-10 19:41 +0000
Re: nested ternary discovery Mike Sanders <porkchop@invalid.foo> - 2025-10-11 11:55 +0000
Re: nested ternary discovery Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-12 01:45 +0200
Re: nested ternary discovery dave_thompson_2@comcast.net - 2025-10-12 20:58 -0400
Re: nested ternary discovery Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2025-10-13 04:30 +0200
csiph-web