Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
2c24ea37
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看板
提交
2c24ea37
编写于
5月 09, 2019
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[iter] Take start value in hb_enumerate()
Also rewrite it via composition.
上级
7675d0d3
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
14 addition
and
48 deletion
+14
-48
src/hb-iter.hh
src/hb-iter.hh
+13
-48
src/test-iter.cc
src/test-iter.cc
+1
-0
未找到文件。
src/hb-iter.hh
浏览文件 @
2c24ea37
...
...
@@ -490,58 +490,11 @@ struct
template
<
typename
A
,
typename
B
,
hb_requires
(
hb_is_iterable
(
A
)
&&
hb_is_iterable
(
B
))>
hb_zip_iter_t
<
hb_iter_type
<
A
>
,
hb_iter_type
<
B
>>
operator
()
(
A
&
a
,
B
&
b
)
const
operator
()
(
A
&
&
a
,
B
&&
b
)
const
{
return
hb_zip_iter_t
<
hb_iter_type
<
A
>
,
hb_iter_type
<
B
>>
(
hb_iter
(
a
),
hb_iter
(
b
));
}
}
HB_FUNCOBJ
(
hb_zip
);
/* hb_enumerate */
template
<
typename
Iter
,
hb_requires
(
hb_is_iterator
(
Iter
))>
struct
hb_enumerate_iter_t
:
hb_iter_t
<
hb_enumerate_iter_t
<
Iter
>
,
hb_pair_t
<
unsigned
,
typename
Iter
::
item_t
>>
{
hb_enumerate_iter_t
(
const
Iter
&
it
)
:
i
(
0
),
it
(
it
)
{}
typedef
hb_pair_t
<
unsigned
,
typename
Iter
::
item_t
>
__item_t__
;
static
constexpr
bool
is_random_access_iterator
=
Iter
::
is_random_access_iterator
;
static
constexpr
bool
is_sorted_iterator
=
true
;
__item_t__
__item__
()
const
{
return
__item_t__
(
+
i
,
*
it
);
}
__item_t__
__item_at__
(
unsigned
j
)
const
{
return
__item_t__
(
i
+
j
,
it
[
j
]);
}
bool
__more__
()
const
{
return
bool
(
it
);
}
unsigned
__len__
()
const
{
return
it
.
len
();
}
void
__next__
()
{
++
i
;
++
it
;
}
void
__forward__
(
unsigned
n
)
{
i
+=
n
;
it
+=
n
;
}
void
__prev__
()
{
--
i
;
--
it
;
}
void
__rewind__
(
unsigned
n
)
{
i
-=
n
;
it
-=
n
;
}
hb_enumerate_iter_t
__end__
()
const
{
if
(
is_random_access_iterator
)
return
*
this
+
this
->
len
();
/* Above expression loops twice. Following loops once. */
auto
it
=
*
this
;
while
(
it
)
++
it
;
return
it
;
}
bool
operator
!=
(
const
hb_enumerate_iter_t
&
o
)
const
{
return
i
!=
o
.
i
||
it
!=
o
.
it
;
}
private:
unsigned
i
;
Iter
it
;
};
struct
{
template
<
typename
Iterable
,
hb_requires
(
hb_is_iterable
(
Iterable
))>
hb_enumerate_iter_t
<
hb_iter_type
<
Iterable
>>
operator
()
(
Iterable
&&
it
)
const
{
return
hb_enumerate_iter_t
<
hb_iter_type
<
Iterable
>>
(
hb_iter
(
it
));
}
}
HB_FUNCOBJ
(
hb_enumerate
);
/* hb_apply() */
template
<
typename
Appl
>
...
...
@@ -629,6 +582,18 @@ struct
}
HB_FUNCOBJ
(
hb_range
);
/* hb_enumerate */
struct
{
template
<
typename
Iterable
,
typename
Index
=
unsigned
,
hb_requires
(
hb_is_iterable
(
Iterable
))>
auto
operator
()
(
Iterable
&&
it
,
Index
start
=
0u
)
const
HB_AUTO_RETURN
(
hb_zip
(
hb_iota
(
start
),
it
)
)
}
HB_FUNCOBJ
(
hb_enumerate
);
/* hb_sink() */
...
...
src/test-iter.cc
浏览文件 @
2c24ea37
...
...
@@ -158,6 +158,7 @@ main (int argc, char **argv)
test_iterator
(
hb_zip
(
st
,
v
));
test_iterator_non_default_constructable
(
hb_enumerate
(
st
));
test_iterator_non_default_constructable
(
hb_enumerate
(
st
,
-
5
));
test_iterator_non_default_constructable
(
hb_enumerate
(
hb_iter
(
st
)));
test_iterator_non_default_constructable
(
hb_enumerate
(
hb_iter
(
st
)
+
1
));
test_iterator_non_default_constructable
(
hb_iter
(
st
)
|
hb_filter
());
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录