Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
778c96b8
T
Third Party Harfbuzz
项目概览
OpenHarmony
/
Third Party Harfbuzz
1 年多 前同步成功
通知
0
Star
18
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Harfbuzz
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
778c96b8
编写于
1月 27, 2019
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[iter] Fix hb_iter()
上级
2f5b1a91
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
8 addition
and
8 deletion
+8
-8
src/hb-algs.hh
src/hb-algs.hh
+0
-4
src/hb-iter.hh
src/hb-iter.hh
+7
-3
src/test-iter.cc
src/test-iter.cc
+1
-1
未找到文件。
src/hb-algs.hh
浏览文件 @
778c96b8
...
@@ -31,10 +31,6 @@
...
@@ -31,10 +31,6 @@
#include "hb-null.hh"
#include "hb-null.hh"
template
<
typename
T
>
inline
typename
T
::
iter_t
hb_iter
(
const
T
&
c
)
{
return
c
.
iter
();
}
static
HB_UNUSED
const
struct
hb_identity_ft
static
HB_UNUSED
const
struct
hb_identity_ft
{
{
template
<
typename
T
>
T
template
<
typename
T
>
T
...
...
src/hb-iter.hh
浏览文件 @
778c96b8
...
@@ -91,9 +91,6 @@ struct hb_iter_t
...
@@ -91,9 +91,6 @@ struct hb_iter_t
void
operator
=
(
const
hb_iter_t
&
o
HB_UNUSED
)
{}
void
operator
=
(
const
hb_iter_t
&
o
HB_UNUSED
)
{}
};
};
/* Returns iterator type of a type. */
#define hb_iter_t(Iterable) decltype (hb_declval (Iterable).iter ())
#define HB_ITER_USING(Name) \
#define HB_ITER_USING(Name) \
using item_t = typename Name::item_t; \
using item_t = typename Name::item_t; \
using Name::item_size; \
using Name::item_size; \
...
@@ -112,6 +109,13 @@ struct hb_iter_t
...
@@ -112,6 +109,13 @@ struct hb_iter_t
using Name::operator -; \
using Name::operator -; \
static_assert (true, "")
static_assert (true, "")
/* Returns iterator type of a type. */
#define hb_iter_t(Iterable) decltype (hb_declval (Iterable).iter ())
template
<
typename
T
>
inline
hb_iter_t
(
T
)
hb_iter
(
const
T
&
c
)
{
return
c
.
iter
();
}
/* Mixin to fill in what the subclass doesn't provide. */
/* Mixin to fill in what the subclass doesn't provide. */
template
<
typename
iter_t
,
typename
item_t
=
typename
iter_t
::
__item_t__
>
template
<
typename
iter_t
,
typename
item_t
=
typename
iter_t
::
__item_t__
>
struct
hb_iter_mixin_t
struct
hb_iter_mixin_t
...
...
src/test-iter.cc
浏览文件 @
778c96b8
...
@@ -135,7 +135,7 @@ main (int argc, char **argv)
...
@@ -135,7 +135,7 @@ main (int argc, char **argv)
hb_array_t
<
hb_vector_t
<
int
>
>
pa
;
hb_array_t
<
hb_vector_t
<
int
>
>
pa
;
pa
->
as_array
();
pa
->
as_array
();
+
s
+
hb_iter
(
s
)
|
hb_map
(
hb_identity
)
|
hb_map
(
hb_identity
)
|
hb_filter
()
|
hb_filter
()
|
hb_filter
(
hb_bool
)
|
hb_filter
(
hb_bool
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录