Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abseil-cpp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
abseil-cpp
Commits
54f3476f
Commit
54f3476f
authored
Sep 29, 2022
by
pateldeev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename True alias.
parent
b39aa365
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
absl/functional/internal/any_invocable.h
+10
-10
No files found.
absl/functional/internal/any_invocable.h
View file @
54f3476f
...
...
@@ -683,15 +683,15 @@ using UnwrapStdReferenceWrapper =
// An alias that always yields std::true_type (used with constraints) where
// substitution failures happen when forming the template arguments.
template
<
class
...
T
>
using
True
=
using
True
Alias
=
std
::
integral_constant
<
bool
,
sizeof
(
absl
::
void_t
<
T
...
>*
)
!=
0
>
;
/*SFINAE constraints for the conversion-constructor.*/
template
<
class
Sig
,
class
F
,
class
=
absl
::
enable_if_t
<
!
std
::
is_same
<
RemoveCVRef
<
F
>
,
AnyInvocable
<
Sig
>>::
value
>>
using
CanConvert
=
True
<
absl
::
enable_if_t
<!
IsInPlaceType
<
RemoveCVRef
<
F
>>::
value
>
,
using
CanConvert
=
TrueAlias
<
absl
::
enable_if_t
<!
IsInPlaceType
<
RemoveCVRef
<
F
>>::
value
>
,
absl
::
enable_if_t
<
Impl
<
Sig
>::
template
CallIsValid
<
F
>::
value
>
,
absl
::
enable_if_t
<
Impl
<
Sig
>::
template
CallIsNoexceptIfSigIsNoexcept
<
F
>::
value
>
,
...
...
@@ -699,7 +699,7 @@ using CanConvert =
/*SFINAE constraints for the std::in_place constructors.*/
template
<
class
Sig
,
class
F
,
class
...
Args
>
using
CanEmplace
=
True
<
using
CanEmplace
=
True
Alias
<
absl
::
enable_if_t
<
Impl
<
Sig
>::
template
CallIsValid
<
F
>::
value
>
,
absl
::
enable_if_t
<
Impl
<
Sig
>::
template
CallIsNoexceptIfSigIsNoexcept
<
F
>::
value
>
,
...
...
@@ -709,16 +709,16 @@ using CanEmplace = True<
template
<
class
Sig
,
class
F
,
class
=
absl
::
enable_if_t
<
!
std
::
is_same
<
RemoveCVRef
<
F
>
,
AnyInvocable
<
Sig
>>::
value
>>
using
CanAssign
=
True
<
absl
::
enable_if_t
<
Impl
<
Sig
>::
template
CallIsValid
<
F
>::
value
>
,
using
CanAssign
=
TrueAlias
<
absl
::
enable_if_t
<
Impl
<
Sig
>::
template
CallIsValid
<
F
>::
value
>
,
absl
::
enable_if_t
<
Impl
<
Sig
>::
template
CallIsNoexceptIfSigIsNoexcept
<
F
>::
value
>
,
absl
::
enable_if_t
<
std
::
is_constructible
<
absl
::
decay_t
<
F
>
,
F
>::
value
>>
;
/*SFINAE constraints for the reference-wrapper conversion-assign operator.*/
template
<
class
Sig
,
class
F
>
using
CanAssignReferenceWrapper
=
True
<
absl
::
enable_if_t
<
using
CanAssignReferenceWrapper
=
TrueAlias
<
absl
::
enable_if_t
<
Impl
<
Sig
>::
template
CallIsValid
<
std
::
reference_wrapper
<
F
>>::
value
>
,
absl
::
enable_if_t
<
Impl
<
Sig
>::
template
CallIsNoexceptIfSigIsNoexcept
<
std
::
reference_wrapper
<
F
>>::
value
>>
;
...
...
@@ -778,7 +778,7 @@ using CanAssignReferenceWrapper =
\
/*SFINAE constraint to check if F is invocable with the proper signature*/
\
template <class F> \
using CallIsValid = True
<absl::enable_if_t<absl::disjunction<
\
using CallIsValid = True
Alias<absl::enable_if_t<absl::disjunction<
\
absl::base_internal::is_invocable_r<ReturnType, \
absl::decay_t<F> inv_quals, P...>, \
std::is_same<ReturnType, \
...
...
@@ -788,7 +788,7 @@ using CanAssignReferenceWrapper =
/*SFINAE constraint to check if F is nothrow-invocable when necessary*/
\
template <class F> \
using CallIsNoexceptIfSigIsNoexcept = \
True
<ABSL_INTERNAL_ANY_INVOCABLE_NOEXCEPT_CONSTRAINT(inv_quals,
\
True
Alias<ABSL_INTERNAL_ANY_INVOCABLE_NOEXCEPT_CONSTRAINT(inv_quals,
\
noex)>; \
\
/*Put the AnyInvocable into an empty state.*/
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment