From Jason Turner

[classification]

Diff to HTML by rtfpessoa

tmp/tmpkg_g_08c/{from.md → to.md} RENAMED
@@ -13,15 +13,14 @@ template <class charT> bool isxdigit(charT c, const locale& loc);
13
  template <class charT> bool isalnum (charT c, const locale& loc);
14
  template <class charT> bool isgraph (charT c, const locale& loc);
15
  template <class charT> bool isblank (charT c, const locale& loc);
16
  ```
17
 
18
- Each of these functions `is\textbf{F}` returns the result of the
19
- expression:
20
 
21
  ``` cpp
22
  use_facet<ctype<charT>>(loc).is(ctype_base::F, c)
23
  ```
24
 
25
- where ***F*** is the `ctype_base::mask` value corresponding to that
26
- function ([[category.ctype]]).[^3]
27
 
 
13
  template <class charT> bool isalnum (charT c, const locale& loc);
14
  template <class charT> bool isgraph (charT c, const locale& loc);
15
  template <class charT> bool isblank (charT c, const locale& loc);
16
  ```
17
 
18
+ Each of these functions `isF` returns the result of the expression:
 
19
 
20
  ``` cpp
21
  use_facet<ctype<charT>>(loc).is(ctype_base::F, c)
22
  ```
23
 
24
+ where `F` is the `ctype_base::mask` value corresponding to that
25
+ function ([[category.ctype]]).[^4]
26