About 1,825,834 results (1,509 milliseconds)

How to properly access literals in C .g4 grammar

https://groups.google.com/g/antlr-discussion/c/dmVopwW8bnY
... literal. I can do: Token tok = (Token) ctx.getChild(1).getPayload();. if (tok.getType() == Parser.Plus) {...} // or. if (ctx.getChild(1).getText().equals('+ ...

Include external file as a char[]

https://groups.google.com/a/isocpp.org/g/std-proposals/c/b6ncBojU8wI
C++ source files are no place for mesh data, images, or other languages coded in string literals. However, I'm not against compiler extensions that would permit ...

Improving ANTLR3 - Generating UTF-8 and UTF-32 lexers.

https://groups.google.com/g/antlr-discussion/c/NS-QRPW2dfg
May 7, 2015 ... Actual encoding should be irrelevant for the compiler of the target language. In C++ both byte sequences 75 38 22 E2 88 9E 22 (7 bytes, UTF-8) ...

Draft Proposal of File String Ltiterals

https://groups.google.com/a/isocpp.org/g/std-proposals/c/tKioR8OUiAw
... string literal would work just as any C++ string literal does with them. ... So therefore, Alice has a problem that C++11 string literals can solve but file-input ...

[erlang-questions] Binary string literal syntax

https://groups.google.com/g/erlang-programming/c/27TB1CRKlec
Jun 5, 2018 ... On 2018年6月5日火曜日 19時51分32秒 JST Sean Hinde wrote: > I've been writing a lot of Elixir over the last few months (plus Swift, Java, C) and ...

What would you use a #[] data literal for?

https://groups.google.com/g/clojure/c/yDvTRP0gYLA/m/xy_1BF1moBIJ
Dec 28, 2012 ... (let [#[plus minus times] (foo 1 2)]. (str "bla bla" plus "blaah" minus))) JW.. Ambrose Bonnaire-Sergeant's profile photo. Ambrose Bonnaire ...

Solution: String Literals with Escape Characters (ANTLR 3.4; Java ...

https://groups.google.com/g/antlr-discussion/c/eiXpuz68zsE
Jan 24, 2013 ... default : in_sb.append(c); } } } I don't need to specify unicode literals (\u escape plus hex digits), but if I did I think the solution could ...

will Dart ever support javascript style object literals?

https://groups.google.com/a/dartlang.org/g/misc/c/-jwPK8I6hWQ
Sep 29, 2012 ... Groovy added dynamic language semantics on top of java by adding closures plus sticking what amounts to a map as a wrapper on the java object ...

steve yegge - numbers-minilanguage

https://sites.google.com/site/steveyegge2/numbers-minilanguage
Which is all well and good, because if you did that, people would think you were pretty weird. C, C++ and Java don't support binary literals. You have to ...

Timed initial literals on the cheap?

https://groups.google.com/g/fast-downward/c/JvT59g4mrLE
Nov 14, 2022 ... ... literals? FD already tracks ... next); add objects s0, s1, ..., up to however many steps you want to count; add (current-step s0) and (plus ...

0o for Octal?

https://groups.google.com/a/isocpp.org/g/std-proposals/c/IXXXDo3Y1rA
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group. To unsubscribe from this group and ...

[9fans] [RFC] fonts and unicode/utf [TeX]

https://groups.google.com/g/comp.os.plan9/c/3qPClf6VegU/m/-sWN1RvzHhAJ
semi-range. The Computer Modern are ASCII (plus, in control positions, ligatures and so on). The PostScript standard fonts have all latin1. Hence, by ...

Switchable literal types - ways to make Julia slower :) [or faster/safer..?]

https://groups.google.com/g/julia-dev/c/YIfC1XL8Yd0
The sizes for decimal floating point available are the same (plus Decimal128). ... it's my favorite new language in many years :-) (Scheme, CLU and C had been, ...

Hexadecimal Numbers

https://groups.google.com/g/clojure/c/arArR1UJox0
The docs for the Reader currently say this about Number literals: Numbers - as per Java, plus indefinitely long integers are supported, as well as ratios, e.g. ...

IMHO A grave design error in std::string_view will bring c++ into ...

https://groups.google.com/a/isocpp.org/g/std-discussion/c/Gj5gt5E-po8
Sep 4, 2017 ... int main() { using namespace std::literals; auto source = "foobar"s; auto bar = sub_string(source, 3); // but uh-oh... bar = sub_string("foobar" ...

JSON support for the C++ standard library

https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAPCFJdTQdS1%3D3k65Vevo6yBEw7Tor9JTdN8VKkqRRh7iphRCLQ%40mail.gmail.com
A variant-like container type (for this mail, let's call it "std::json") that combines C++ types for the JSON value types [RFC7159, chapter 3]:. Or std::json:: ...

Receiving an array literal message missing one or more values ...

https://support.google.com/docs/thread/192719359/receiving-an-array-literal-message-missing-one-or-more-values-when-querying-two-sheets-pls-help?hl=en
Dec 13, 2022 ... The formula I've written is in Summer Enrollment plus Waitlist tab of the Seasons New Enrollment Responses sheet. I am getting an array literal ...

C++11 update

https://groups.google.com/a/chromium.org/g/chromium-dev/c/oVTPsijC7d0
Background: What is C++11? C++11 is the current revision of the C++ language standard. Enabling it in a code base requires.

A safer/better C++?

https://groups.google.com/g/comp.lang.c++.moderated/c/YBF-nBzRxRA
2) inconsistent behavior between std::string's and quoted string literals 3) inconsistent behavior between core arrays, and std::vector 4) inconsistent and ...

Multiplying integral chrono duration by float has unintuitive behavior

https://groups.google.com/a/isocpp.org/g/std-discussion/c/65xZ-XXAHVM
Jul 6, 2016 ... The integral chrono duration types (the defaults) only define arithmetic operators for integral literals. ... On the plus side, my complier ...