返回类型后置,一个用途是为了逻辑上的体现?

 大家一般都是先关心参数,然后最后再看返回的是什么类型。

在这里把返回类型后置,可能就是一种逻辑上的体现吧

fmt的一个函数。

\fmt\core.h

这个函数的意义,应该就是用变长参数初始化成一个format_arg_store类型的变量,并返回。

\fmt\bundled\core.h

/**\rstConstructs a `~fmt::format_arg_store` object that contains references toarguments and can be implicitly converted to `~fmt::format_args`. `Context`can be omitted in which case it defaults to `~fmt::context`.See `~fmt::arg` for lifetime considerations.\endrst*/
template <typename Context = format_context, typename... Args>
constexpr auto make_format_args(const Args&... args)-> format_arg_store<Context, Args...> {return {args...};
}

但这个怎么回事,传进double,返回的还是double:

  FMT_CONSTEXPR FMT_INLINE auto map(double val) -> double { return val; }

可能是因为重载其他map模板函数,比如:

 template <typename T, FMT_ENABLE_IF(is_char<T>::value)>FMT_CONSTEXPR FMT_INLINE auto map(T val) -> char_type {static_assert(std::is_same<T, char>::value || std::is_same<T, char_type>::value,"mixing character types is disallowed");return val;}注意,这个char_type是通过模板参数而来的:
using char_type = typename Context::char_type;

\fmt\bundled\core.h

// Maps formatting arguments to core types.
template <typename Context> struct arg_mapper 
{using char_type = typename Context::char_type;FMT_CONSTEXPR FMT_INLINE auto map(signed char val) -> int { return val; }FMT_CONSTEXPR FMT_INLINE auto map(unsigned char val) -> unsigned {return val;}FMT_CONSTEXPR FMT_INLINE auto map(short val) -> int { return val; }FMT_CONSTEXPR FMT_INLINE auto map(unsigned short val) -> unsigned {return val;}FMT_CONSTEXPR FMT_INLINE auto map(int val) -> int { return val; }FMT_CONSTEXPR FMT_INLINE auto map(unsigned val) -> unsigned { return val; }FMT_CONSTEXPR FMT_INLINE auto map(long val) -> long_type { return val; }FMT_CONSTEXPR FMT_INLINE auto map(unsigned long val) -> ulong_type {return val;}FMT_CONSTEXPR FMT_INLINE auto map(long long val) -> long long { return val; }FMT_CONSTEXPR FMT_INLINE auto map(unsigned long long val)-> unsigned long long {return val;}FMT_CONSTEXPR FMT_INLINE auto map(int128_t val) -> int128_t { return val; }FMT_CONSTEXPR FMT_INLINE auto map(uint128_t val) -> uint128_t { return val; }FMT_CONSTEXPR FMT_INLINE auto map(bool val) -> bool { return val; }template <typename T, FMT_ENABLE_IF(is_char<T>::value)>FMT_CONSTEXPR FMT_INLINE auto map(T val) -> char_type {static_assert(std::is_same<T, char>::value || std::is_same<T, char_type>::value,"mixing character types is disallowed");return val;}FMT_CONSTEXPR FMT_INLINE auto map(float val) -> float { return val; }FMT_CONSTEXPR FMT_INLINE auto map(double val) -> double { return val; }FMT_CONSTEXPR FMT_INLINE auto map(long double val) -> long double {return val;}FMT_CONSTEXPR FMT_INLINE auto map(char_type* val) -> const char_type* {return val;}FMT_CONSTEXPR FMT_INLINE auto map(const char_type* val) -> const char_type* {return val;}template <typename T, FMT_ENABLE_IF(is_string<T>::value)>FMT_CONSTEXPR FMT_INLINE auto map(const T& val)-> basic_string_view<char_type> {static_assert(std::is_same<char_type, char_t<T>>::value,"mixing character types is disallowed");return to_string_view(val);}template <typename T,FMT_ENABLE_IF(std::is_constructible<basic_string_view<char_type>, T>::value &&!is_string<T>::value && !has_formatter<T, Context>::value &&!has_fallback_formatter<T, char_type>::value)>FMT_CONSTEXPR FMT_INLINE auto map(const T& val)-> basic_string_view<char_type> {return basic_string_view<char_type>(val);}template <typename T,FMT_ENABLE_IF(std::is_constructible<std_string_view<char_type>, T>::value &&!std::is_constructible<basic_string_view<char_type>, T>::value &&!is_string<T>::value && !has_formatter<T, Context>::value &&!has_fallback_formatter<T, char_type>::value)>FMT_CONSTEXPR FMT_INLINE auto map(const T& val)-> basic_string_view<char_type> {return std_string_view<char_type>(val);}FMT_CONSTEXPR FMT_INLINE auto map(const signed char* val) -> const char* {static_assert(std::is_same<char_type, char>::value, "invalid string type");return reinterpret_cast<const char*>(val);}FMT_CONSTEXPR FMT_INLINE auto map(const unsigned char* val) -> const char* {static_assert(std::is_same<char_type, char>::value, "invalid string type");return reinterpret_cast<const char*>(val);}FMT_CONSTEXPR FMT_INLINE auto map(signed char* val) -> const char* {const auto* const_val = val;return map(const_val);}FMT_CONSTEXPR FMT_INLINE auto map(unsigned char* val) -> const char* {const auto* const_val = val;return map(const_val);}FMT_CONSTEXPR FMT_INLINE auto map(void* val) -> const void* { return val; }FMT_CONSTEXPR FMT_INLINE auto map(const void* val) -> const void* {return val;}FMT_CONSTEXPR FMT_INLINE auto map(std::nullptr_t val) -> const void* {return val;}// We use SFINAE instead of a const T* parameter to avoid conflicting with// the C array overload.template <typename T>FMT_CONSTEXPR auto map(T) -> enable_if_t<std::is_pointer<T>::value, int> {// Formatting of arbitrary pointers is disallowed. If you want to output// a pointer cast it to "void *" or "const void *". In particular, this// forbids formatting of "[const] volatile char *" which is printed as bool// by iostreams.static_assert(!sizeof(T), "formatting of non-void pointers is disallowed");return 0;}template <typename T, std::size_t N>FMT_CONSTEXPR FMT_INLINE auto map(const T (&values)[N]) -> const T (&)[N] {return values;}template <typename T,FMT_ENABLE_IF(std::is_enum<T>::value &&!has_formatter<T, Context>::value &&!has_fallback_formatter<T, char_type>::value)>FMT_CONSTEXPR FMT_INLINE auto map(const T& val)-> decltype(std::declval<arg_mapper>().map(static_cast<typename std::underlying_type<T>::type>(val))) {return map(static_cast<typename std::underlying_type<T>::type>(val));}template <typename T,FMT_ENABLE_IF(!is_string<T>::value && !is_char<T>::value &&(has_formatter<T, Context>::value ||has_fallback_formatter<T, char_type>::value))>FMT_CONSTEXPR FMT_INLINE auto map(const T& val) -> const T& {return val;}template <typename T, FMT_ENABLE_IF(is_named_arg<T>::value)>FMT_CONSTEXPR FMT_INLINE auto map(const T& named_arg)-> decltype(std::declval<arg_mapper>().map(named_arg.value)) {return map(named_arg.value);}auto map(...) -> unformattable { return {}; }
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/10726.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Rust学习笔记(上)

前言 笔记的内容主要参考与《Rust 程序设计语言》&#xff0c;一些也参考了《通过例子学 Rust》和《Rust语言圣经》。 Rust学习笔记分为上中下&#xff0c;其它两个地址在Rust学习笔记&#xff08;中&#xff09;和Rust学习笔记&#xff08;下&#xff09;。 编译与运行 Ru…

成功解决No module named ‘huggingface_hub.inference._text_generation‘

成功解决No module named huggingface_hub.inference._text_generation 目录 解决问题 解决思路 解决方法 解决问题 No module named huggingface_hub.inferen

python使用yaml文件以及元组样式字符串使用eval的类型转换

编程中&#xff0c;对于可变内容&#xff0c;最好是将其放入配置文件中&#xff0c;经过这段时间的学习&#xff0c;感觉使用yaml文件很方便。我的环境&#xff1a;win10&#xff0c;python3.8.10。 python使用yaml文件&#xff0c;首先要安装库。 pip38 install pyyaml 安装…

AWTK 开源串口屏开发(18) - 用 C 语言自定义命令

AWTK-HMI 内置了不少模型&#xff0c;利用这些模型开发应用程序&#xff0c;不需要编写代码即可实现常见的应用。但是&#xff0c;有时候我们需要自定义一些命令&#xff0c;以实现一些特殊的功能。 本文档介绍如何使用 C 语言自定义命令。 1. 实现 hmi_model_cmd_t 接口 1.1…

实现二叉树的基本操作

博主主页: 码农派大星. 关注博主带你了解更多数据结构知识 1我们先来模拟创建一个二叉树 public class TestBinaryTreee {static class TreeNode{public char val;public TreeNode left;public TreeNode right;public TreeNode(char val) {this.val val;}}public TreeNode …

交叉编译u-boot,qemu启动测试

交叉编译u-boot 1 配置交叉编译工具链&#xff1a; 下载地址 https://releases.linaro.org/components/toolchain/binaries/ ### CROSS-COMPILE export AARCH64_LINUX_GNU_TOOLS/media/wmx/cross_compile_tools/aarch64-linux-gun/gcc-x86_64_aarch64-linux-gnu/bin export …

linux 安装 mangodb 并设置服务开机自启

1、下载 wget http://mosquitto.org/files/source/mosquitto-1.6.8.tar.gz 2、解压 tar -zxvf mosquitto-1.6.8.tar.gz 3、编译安装cd mosquitto-1.6.8 make sudo make install4、在当前目录。进入mosquitto服务文件存放的文件夹 cd service/systemd可以看到3个文件 点击read…

【C/C++】设计模式——工厂模式:简单工厂、工厂方法、抽象工厂

创作不易&#xff0c;本篇文章如果帮助到了你&#xff0c;还请点赞 关注支持一下♡>&#x16966;<)!! 主页专栏有更多知识&#xff0c;如有疑问欢迎大家指正讨论&#xff0c;共同进步&#xff01; &#x1f525;c系列专栏&#xff1a;C/C零基础到精通 &#x1f525; 给大…

二.基础篇: 面向对象进阶

1. 基础篇语法篇&#xff1a;一.基础篇&#xff1a;基础语法-CSDN博客 面向对象进阶 本章主要学习内容&#xff1a; static继承包&#xff0c;final&#xff0c;权限修饰符&#xff0c;代码块抽象类接口多态内部类 1. static static翻译过来就是静态的意思static表示静态&am…

AI语音模型PaddleSpeech踩坑(安装)指南

PaddleSpeech简介 PaddleSpeech 是基于飞桨 PaddlePaddle 的语音方向的开源模型库&#xff0c;用于语音和音频中的各种关键任务的开发&#xff0c;包含大量基于深度学习前沿和有影响力的模型。 PaddleSpeech安装步骤 提示&#xff1a;要找到一个合适的PaddleSpeech版本与pad…

STM32开发学习——使用 Cortex-M3M4M7 故障异常原因与定位

STM32开发学习——使用 Cortex-M3/M4/M7 故障异常原因与定位 文章目录 STM32开发学习——使用 Cortex-M3/M4/M7 故障异常原因与定位文档说明&#xff1a;官方参考文档线上链接&#xff08;可在线阅读与下载&#xff09;&#xff1a;故障异常处理程序HardFault优先级升级说明故障…

java项目之相亲网站的设计与实现源码(springboot+mysql+vue)

风定落花生&#xff0c;歌声逐流水&#xff0c;大家好我是风歌&#xff0c;混迹在java圈的辛苦码农。今天要和大家聊的是一款基于springboot的相亲网站的设计与实现。项目源码以及部署相关请联系风歌&#xff0c;文末附上联系信息 。 项目简介&#xff1a; 相亲网站的设计与实…

连升三级!openGauss单机版从2.1.0经停3.0.0升级至5.0.0

前言 如前文所述&#xff0c;我们的小demo项目起初安装了openGauss的2.1.0版本&#xff0c;由于2.1.0不是长期维护&#xff08;LTS&#xff09;版本&#xff0c;所以要升级到5.0.0LTS。考虑到虽然是DEMO项目&#xff0c;但也有些体验用户&#xff0c;所以为了保障业务连续性&a…

2023版brupsuite专业破解安装

安装教程&#xff0c;分两部分&#xff1a; 1、安装java环境、参考链接JAVA安装配置----最详细的教程&#xff08;测试木头人&#xff09;_java安装教程详细-CSDN博客 2、安装2023.4版本brupsuite&#xff1a;参考链接 2023最新版—Brup_Suite安装配置----最详细的教程&…

Java---类和对象第一节

目录 1.面向对象初步认识 1.1什么是面向对象 1.2面向对象和面向过程的区别 2.类的定义和使用 2.1简单认识类 2.2类的定义格式 2.3类的实例化 2.4类和对象的说明 3.this关键字 3.1访问本类成员变量 3.2调用构造方法初始化成员变量 3.3this引用的特性 4.对象的构造以…

一文弄懂 Linux 系统调用函数之 exec 函数族

目录 简介函数原型参数说明返回值函数区别使用示例采用参数列表传递参数&#xff0c;以 execl 为例采用参数数组传递参数&#xff0c;以 execv 为例调用 PATH 下可执行文件&#xff0c;以 execlp 为例使用新的环境变量给新进程&#xff0c;以 execle 为例 更多内容 简介 exec …

【Java】/*方法的使用-快速总结*/

目录 一、什么是方法 二、方法的定义 三、实参和形参的关系 四、方法重载 五、方法签名 一、什么是方法 Java中的方法可以理解为C语言中的函数&#xff0c;只是换了个名称而已。 二、方法的定义 1. 语法格式&#xff1a; public static 返回类型 方法名 (形参列表) { //方…

windows server 2019 安装 docker环境

一、根据官方说明进行安装 , 看起来过程相当简单, 但问题还是有的 准备 Windows 操作系统容器 | Microsoft Learn // 一个 powershell 脚本&#xff0c;该脚本配置环境以启用与容器相关的 OS 功能并安装 Docker 运行时。 Invoke-WebRequest -UseBasicParsing "https://r…

【Docker】Ubuntu下Docker的基本使用方法与常用命令总结

【Docker】docker的基本使用方法 镜像image与容器container的关系基本命令- 查看 Docker 版本- 拉取镜像- 查看系统中的镜像- 删除某个镜像- 列出当前 Docker 主机上的所有容器&#xff0c;包括正在运行的、暂停的、已停止的&#xff0c;以及未运行的容器- 列出当前 Docker 主机…

【信息系统项目管理师知识点速记】沟通管理:管理沟通

管理沟通是确保项目信息流通顺畅的关键流程,涉及到信息的收集、生成、传播、存档、检索、监管及最终处理,以促进项目团队与利益相关者的有效互动。这一过程不仅关乎信息的发布,更侧重于信息的恰当格式与精准送达,同时鼓励利益相关者的积极参与,包括信息补充、澄清和讨论。…