This page is a snapshot from the LWG issues list, see the Library Active Issues List for more information and the meaning of C++23 status.

3818. Exposition-only concepts are not described in library intro

Section: 16.3.3 [conventions] Status: C++23 Submitter: Tim Song Opened: 2022-11-08 Last modified: 2023-11-22

Priority: Not Prioritized

View all issues with C++23 status.

Discussion:

This is the resolution for GB-074.

The comment is:

[expos.only.func] introduces exposition-only function templates. [expos.only.types] introduces exposition-only types. 16.3.3.5 [objects.within.classes] introduces exposition-only private members.

There is nothing about exposition-only concepts, despite them being used extensively in the library clauses.

The same problem exists for exposition-only variable templates.

[Kona 2022-11-08; Move to Immediate status]

Previous resolution [SUPERSEDED]:

  1. Modify [expos.only.func] as indicated, changing the stable name:

    16.3.3.2 Exposition-only functionsentities [expos.only.funcentity]

    -1- Several function templatesentities defined in 99 [support] through 99 [thread] and 99 [depr] are only defined for the purpose of exposition. The declaration of such a functionan entity is followed by a comment ending in exposition only.

  2. Strike [expos.only.types] as redundant:

    16.3.3.3.2 Exposition-only types [expos.only.types]

    -1- Several types defined in 99 [support] through 99 [thread] and 99 [depr] are defined for the purpose of exposition. The declaration of such a type is followed by a comment ending in exposition only.

    [Example 1:

    namespace std {
      extern "C" using some-handler = int(int, void*, double);  // exposition only
    }
    

    The type placeholder some-handler can now be used to specify a function that takes a callback parameter with C language linkage. — end example]

[2022-11-09 Tim reopens]

During LWG review of 3753, it was pointed out that typedef-names are not necessarily entities.

[Kona 2022-11-11; Move to Immediate]

[2022-11-12 Approved at November 2022 meeting in Kona. Status changed: Immediate → WP.]

Proposed resolution:

This wording is relative to N4917.

  1. Modify [expos.only.func] as indicated, changing the stable name:

    16.3.3.2 Exposition-only functionsentities, etc. [expos.only.funcentity]

    -1- Several function templatesentities and typedef-names defined in 99 [support] through 99 [thread] and 99 [depr] are only defined for the purpose of exposition. The declaration of such a functionan entity or typedef-name is followed by a comment ending in exposition only.

  2. Strike [expos.only.types] as redundant:

    16.3.3.3.2 Exposition-only types [expos.only.types]

    -1- Several types defined in 99 [support] through 99 [thread] and 99 [depr] are defined for the purpose of exposition. The declaration of such a type is followed by a comment ending in exposition only.

    [Example 1:

    namespace std {
      extern "C" using some-handler = int(int, void*, double);  // exposition only
    }
    

    The type placeholder some-handler can now be used to specify a function that takes a callback parameter with C language linkage. — end example]