Difference between revisions of "User talk:T. Canens"
Cooper2222 (Talk | contribs) (→copy elision: new section) |
m (Search in Spanish) |
||
Line 189: | Line 189: | ||
See the bottom of [[Talk:cpp/language/copy_elision]] | See the bottom of [[Talk:cpp/language/copy_elision]] | ||
− | [[User:Cooper2222|Cooper2222]] ([[User talk:Cooper2222|talk]]) 22:51, 17 November 2019 (PST) | + | [[User:Cooper2222|Cooper2222]] ([[User talk:Cooper2222|talk]]) 22:51, 17 November 2019 (PST)" |
+ | |||
+ | ==Search in Spanish=== | ||
+ | Is there a way to feed the search engine with search terms in Spanish in es.cppreference.com? For example, if I want to search for pages related with templates (''plantillas''), I can't, while in cppreference.com it gives back three results.<br> | ||
+ | [[User:Ljestrada|ticotico]] ([[User talk:Ljestrada|talk]]) 14:01, 25 May 2020 (PDT)<br> |
Revision as of 13:01, 25 May 2020
Thanks
Thanks for fixing bugs such as this one in uniform_real_distribution -- I actually remembered the discussion of that issue on SO as soon as I saw that edit. --Cubbi (talk) 07:44, 25 May 2015 (PDT)
Also awesome job with the library fundamentals TSs! The parallelism TS could make use of these layout ideas. --Cubbi (talk) 19:10, 24 July 2015 (PDT)
- Thanks :) The parallelism TS looks like it's going to be messy. On a quick readthrough, I don't think they actually specified which header the parallel overloads for the 69 existing algorithms are placed in :( T. Canens (talk) 01:08, 25 July 2015 (PDT)
- And I just realized that both the fundamentals TS and the concurrency TS specified a
std::experimental::promise
and astd::experimental::packaged_task
, but one in the inline namespacefundamentals_v(1|2)
and one in the inline namespaceconcurrency_v1
. This is going to be rather tricky to present... T. Canens (talk) 01:19, 25 July 2015 (PDT)
- And I just realized that both the fundamentals TS and the concurrency TS specified a
Value categories
You gave a description for the lvalue cases of conditional expressions on Cubbi's talk page about the Value categories page. I think that it would be great if you could also add at the same location the descriptions for the xvalue and prvalue cases. Because even on the dedicated Conditional expression page it's not clear at all, nor in the standard.
By the way, the standard states, § 5.16. "Conditional operator", alinea 4, 5:
- "If the second and third operands are glvalues of the same value category and have the same type, the result is of that type and value category and it is a bit-field if the second or the third operand is a bit-field, or if both are bit-fields. Otherwise, the result is a prvalue."
So why isn't it that simple? I mean reading this quote from the standard, one should infer simply, for E1 ? E2 : E3:
- If E2 and E3 are lvalues of the same type, then the result is an lvalue;
- If E2 and E3 are xvalues of the same type, then the result is an xvalue;
- Otherwise, the result is a prvalue.
- Is the standard wrong here?
- — Maggyero (talk) 15:40, 23 September 2015 (PDT).
- p4 is talking about the operands after any conversions that are performed by p3. T. Canens (talk) 20:09, 23 September 2015 (PDT)
cwg1550/cwg1560
regarding marking cwg1550 and cwg1560 as "amends C++98", I think it would be inconsistent doing it just because clang did. The way I understood the replies when I asked on std-discission, CWG guidance was that their DRs amend the previous standard and LWG guidance was that their DRs don't. Note someone trying to introduce an editorial that marks CWG1560 as a breaking change in C++14 (which is why I made this edit) --Cubbi (talk) 14:11, 8 January 2016 (PST)
- IMO clearly not all DRs are just for the immediately previous standard (Ville Voutilainen's first email in the std-discussion thread says "Sometimes it applies to earlier ones as well, in which case the designation is sometimes not quite clear."). Take CWG2000, for example - the
<int>
invector<int>
clearly should not be a header-name even in C++98. Similarly, P0136R0 (adopted as P0136R1) says that CWG wants to treat the changes as a DR against C++11, not C++14. And then N3922 says that "Direction from EWG is that we consider this a defect in C++14", but both GCC and Clang trunk apply it with-std=c++11
too.I don't know if CWG keeps some sort of internal record on how far back each DR is supposed to reach, but without access to such a thing I think the best we can do is examining implementations that have implemented the DR at issue and see what each does. If there's an implementation that implements 1550/1560's resolution in C++11 mode but not C++98 mode, I'd support changing it back. T. Canens (talk) 15:58, 8 January 2016 (PST)
- I'm pretty sure CWG doesn't have that kind of record (at least it never came up on the reflector or the wiki recently). Come to think of it, if we're going to be practical and say that compilers can apply DRs whenever they please (which would in fact reflect the truth), then the "applies to" column in my defect report table should simply be dropped. The table itself is necessary though, it is there to prevent people from taking a pre-DR standard draft and editing cppreference. --Cubbi (talk) 18:59, 8 January 2016 (PST)
- Yeah, the table definitely should stay. I'm not sure about dropping "applies to" as some DRs are apparently not fully retroactive (e.g., GCC and Clang both treat
1-1
is a null pointer constant in C++03 mode, even though they both implement CWG903 in C++11 mode and later), so I think it does have some uses. T. Canens (talk) 12:47, 9 January 2016 (PST)
- Yeah, the table definitely should stay. I'm not sure about dropping "applies to" as some DRs are apparently not fully retroactive (e.g., GCC and Clang both treat
- I'm pretty sure CWG doesn't have that kind of record (at least it never came up on the reflector or the wiki recently). Come to think of it, if we're going to be practical and say that compilers can apply DRs whenever they please (which would in fact reflect the truth), then the "applies to" column in my defect report table should simply be dropped. The table itself is necessary though, it is there to prevent people from taking a pre-DR standard draft and editing cppreference. --Cubbi (talk) 18:59, 8 January 2016 (PST)
parallel ts merge
Shouldn't we also be dropping parallel TS links from See Also paragraph in every algorithm? --Cubbi (talk) 11:00, 21 March 2016 (PDT)
- OK, but don't we have an extension installed that will make it much easier? T. Canens (talk) 11:13, 21 March 2016 (PDT)
One Example Per Page?
Hi Canens, You removed the example I added in iterator_traits for two reasons:
- one example per page
- has little to do with iterator_traits
For (1): Here is a page with two examples: http://en.cppreference.com/w/cpp/iterator/iterator_tags
For (2): I believe showing how one can add iterator_traits to his iterator is important. (I moved one version of the example to std::iterator which is a reasonable place for it, but I still think having a relevant example in iterator_traits has its own value.
Cheers, Amirk (talk) 06:01, 29 June 2016 (PDT)
- fixed cpp/iterator/iterator_tags, thanks. --Cubbi (talk) 06:09, 29 June 2016 (PDT)
Text replace
Hi, you've used text replace such as "Text replace - "dsc inc | cpp/experimental/parallelism/dsc algorithm" to "subst:User:T. Canens/null". Wasn't it possible just to use empty replacement target? I'm asking just because I'm interested, not that I think something is wrong :-). Regards. --P12 02:50, 1 February 2017 (PST)
- The full text I wanted to get rid of is
{{dsc inc | cpp/experimental/parallelism/dsc algorithm | <name of algorithm>}}
, i.e., there's a variable component. I tried using a regex but that didn't work for some reason, so a substituted empty template was the simplest. T. Canens (talk) 03:26, 1 February 2017 (PST)
page deletion request
These broken redirect pages should be deleted:
- old/wiki/preprocessor/warning → (deleted)cpp/preprocessor/warning
- User talk:The Phantom → (deleted)User talk:VoidPhantom
- Template:cpp/utility/optional → (deleted)Template:cpp/experimental/optional
- Template:cpp/utility/bad optional access/dcl list constructor → (deleted)Template:cpp/utility/bad optional access/dsc constructor
These dead-end pages should be deleted:
- c/align/alignof
- cpp/container//value compare
By the way, these page should move to dragon/ instead of cpp/dragon/ because they are not a part of cpp:
- cpp/dragon/call dragon
- cpp/dragon/receive fire
page deletion request of zh version
Following wrongly created pages should be deleted:
Already done
- zh:Template:cpp/io/basic synbuf/dsc swap
- zh:Template:cpp/io/basic synbuf/dsc set emit on sync
- zh:Template:cpp/io/basic synbuf/dsc get wrapped
- zh:Template:cpp/io/basic synbuf/dsc emit
- zh:Template:cpp/io/basic synbuf/dsc destructor
- zh:Template:cpp/io/basic_osyncstream/dsc_swap
- zh:cpp/compare/weak equal
- zh:cpp/compare/strong equal
- zh:cpp/compare/partial order
- zh:cpp/compare/weak order
- zh:cpp/compare/strong order
- zh:cpp/compare/named comparison functions
- zh:ciso646
- zh:c/type
- zh:cpp/chrono/time point/operato arith2
- zh:cpp/utility/any/operator
- zh:cpp/container/vector/operator as
- zh:cpp/data types
- zh:cpp/operator precedence
- zh:cpp/preprocessor/define
- zh:cpp/preprocessor/preprocessor if
- zh:cpp/preprocessor/preprocessor vars
- zh:cpp/preprocessor/sharp
- zh:cpp/preprocessor/undef
- zh:cpp/string/basic_string/character_classes
- zh:cpp/io/c/vscanf vfscanf vsscanf
- zh:cpp/io/c/vprintf vfprintf vsprintf
- zh:cpp/io/width
- zh:cpp/other
- zh:cpp/locale/c/setlocale
- zh:cpp/iterator/ostreambuf iterator/operator++
- zh:cpp/iterator/ostream iterator/operator++
- zh:lmt
Fruderica (talk) 22:14, 7 January 2018 (PST)
- All done except for the dragons. T. Canens (talk) 14:19, 8 January 2018 (PST)
- Thank you. And follow pages seems to be redundant or wrongly created:
- zh:Template:cpp/numeric/random/cauchy distribution/a
- zh:Template:cpp/numeric/random/cauchy distribution/b
- zh:cpp/preprocessor/pragma
- zh:cpp/keyword/casting comparison
- zh:cpp/thread/condition_variable_any/native_handle
- zh:old/wiki/string/character classes
- cpp/thread/condition_variable_any/native_handle (and versions in other languages)
- Fruderica (talk) 00:10, 16 January 2018 (PST)
- All done. T. Canens (talk) 13:28, 19 January 2018 (PST)
- Thank you. And follow pages seems to be redundant or wrongly created:
We need a little support at Polish translation
I gathered a small team, and together we are going to translate cppreference into polish (hopefully, all of it). We stumbled across some problems, that we can't solve with default user permissions. We would like to for example update main CSS file http://pl.cppreference.com/w/MediaWiki:Common.css, upload a file for lc linking or update the footer (remove some unnecessary links). Is there a way to get some special permissions for polish part of this wiki, like "confirmed user" or "a little moderator" to get these things done? Or could you do it by yourself? We will appreciate any kind of help :) If you need it, I will post full description of what we wanna do on my "discussion" page
Kaznov (talk) 13:17, 19 January 2018 (PST)
- If you assemble a list of changes you want me to make, I'll be happy to make it (within reason, of course). T. Canens (talk) 13:19, 19 January 2018 (PST)
Could you remove "Portal społeczności" and "Bieżące wydarzenia" links from our footbar? They don't link anywhere, and also these sites can't be created (non-ascii names). Also, please replace the "Pomoc" link with "FAQ" link (the same as on the en version), we will fill it later Kaznov (talk) 14:28, 20 January 2018 (PST)
Also, could you change the link of "edit help" (the one that is on every edit page)? It now links to non-ascii site (that we can't create), please make it link to "Pomoc:Edycja strony". Kaznov (talk) 16:29, 20 January 2018 (PST)
- Hmm, I can override the blacklist and create the page for you if that's preferable. Please make a list of pages you want changed/created and what you want it changed to. You can use Special:AllMessages here and on pl to figure out the name(s) of the system message that needs to be changed. T. Canens (talk) 18:04, 20 January 2018 (PST)
Fixing {{lc}} of zh site
zh:Template:lc does not work now for lack of zh:MediaWiki:Autolinker-definition-c and zh:MediaWiki:Autolinker-definition-cpp.
Could you copy en-versions to the zh-versions?
Fruderica (talk) 09:05, 20 January 2018 (PST)
- ✔ Done. T. Canens (talk) 10:29, 20 January 2018 (PST)
default complier
after removing oldest gcc, clang 3.8(the one after old default complier) become default compiler now. (was it set by index?) Yaossg (talk) 21:27, 20 January 2018 (PST)
Japanese site
I'm translating pages and templates from English site to Japanese site. But I found that many CSS styles are missing or different from English site. Could you update the CSS of Japanese site?
In addition, Coliru compiler and other gadgets are not available in Japanese site. It will be nice if they are available.
Milkpot (talk) 05:28, 16 March 2018 (PDT)
- I've imported most of the things in the MediaWiki namespace. Let me know if you need anything else. T. Canens (talk) 15:32, 16 March 2018 (PDT)
Page deletion request
Please delete Talk:cpp/language/overloaded address. --LittleFlower (talk) 06:22, 15 April 2018 (PDT)
RE: Editing permissions on suggestions page
You mentioned that I should have no restriction "by now" (the over a year old account thing) but when I wrote that I could view the page markup but not save and got a note directing me to the suggestions page. Does whatever that was instigated to protect no longer need protecting or are my permissions changed? Will it be a problem again? It's an awkward time for me to write this but I have few contributions, and searching for "Alec" in the text I doubt would yield a false-positive! Thanks for your time Alec (talk) 05:54, 4 June 2019 (PDT)
- If you can post here, you are no longer affected by the restriction. T. Canens (talk) 10:18, 4 June 2019 (PDT)
Deletion request for items removed by P1614R2
Iterms related to these pages and templates has been removed by P1614R2:
- cpp/utility/compare/strong equal
- cpp/utility/compare/weak equal
- cpp/algorithm/compare_3way
- cpp/algorithm/lexicographical_compare_3way
- Template:cpp/utility/compare/dsc strong equal
- Template:cpp/utility/compare/dsc weak equal
- Template:cpp/algorithm/dsc compare_3way
- Template:cpp/algorithm/dsc lexicographical_compare_3way
And the zh version (and maybe ja version?) of these pages should also be deleted. --Fruderica (talk) 04:19, 6 September 2019 (PDT)
- Done. T. Canens (talk) 06:30, 6 September 2019 (PDT)
copy elision
See the bottom of Talk:cpp/language/copy_elision
Cooper2222 (talk) 22:51, 17 November 2019 (PST)"
Search in Spanish=
Is there a way to feed the search engine with search terms in Spanish in es.cppreference.com? For example, if I want to search for pages related with templates (plantillas), I can't, while in cppreference.com it gives back three results.