[#BloombergLP-bslstl-SharedPtr_TestIsCallable-test-00] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslstl.adoc[bslstl]::xref:BloombergLP/bslstl/SharedPtr_TestIsCallable.adoc[SharedPtr_TestIsCallable]::test :relfileprefix: ../../../ :mrdocs: `test` overloads == Synopses Declared in `<bslstl_sharedptr.h>` SFINAE probe selecting when the functor is callable with `ARG`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class ARG> static xref:BloombergLP/bslstl/SharedPtr_TestIsCallable.adoc[FalseType] xref:BloombergLP/bslstl/SharedPtr_TestIsCallable/test-08.adoc[test](...); ---- [.small]#xref:BloombergLP/bslstl/SharedPtr_TestIsCallable/test-08.adoc[_» more..._]# Overload selected when `FUNCTOR` is callable with `ARG`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class ARG> static xref:BloombergLP/bslstl/SharedPtr_TestIsCallable.adoc[TrueType] xref:BloombergLP/bslstl/SharedPtr_TestIsCallable/test-0b.adoc[test](xref:bsl/enable_if-07.adoc[bsl::enable_if<static_cast<bool>(sizeof ((static_cast<void>(Util::declval<FUNCTOR>()(Util::declval<ARG>())) , 0)))>::type]* dummy); ---- [.small]#xref:BloombergLP/bslstl/SharedPtr_TestIsCallable/test-0b.adoc[_» more..._]# == Return Value * `FalseType` indicating the functor is not callable with `ARG` * `TrueType` indicating the functor is callable with `ARG` == Parameters [cols="1,4"] |=== | Name| Description | *dummy* | unused SFINAE discriminator |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#