惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Recent Commits to openclaw:main
Recent Commits to openclaw:main
L
LangChain Blog
月光博客
月光博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 【当耐特】
宝玉的分享
宝玉的分享
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
博客园_首页
T
Tailwind CSS Blog
P
Proofpoint News Feed
雷峰网
雷峰网
D
Darknet – Hacking Tools, Hacker News & Cyber Security
IT之家
IT之家
V
Vulnerabilities – Threatpost
阮一峰的网络日志
阮一峰的网络日志
C
CERT Recently Published Vulnerability Notes
Attack and Defense Labs
Attack and Defense Labs
S
Schneier on Security
Security Archives - TechRepublic
Security Archives - TechRepublic
L
Lohrmann on Cybersecurity
V
Visual Studio Blog
云风的 BLOG
云风的 BLOG
WordPress大学
WordPress大学
The Register - Security
The Register - Security
N
Netflix TechBlog - Medium
Hugging Face - Blog
Hugging Face - Blog
Project Zero
Project Zero
博客园 - 叶小钗
F
Full Disclosure
大猫的无限游戏
大猫的无限游戏
Latest news
Latest news
S
SegmentFault 最新的问题
C
Cyber Attacks, Cyber Crime and Cyber Security
Google Online Security Blog
Google Online Security Blog
Recorded Future
Recorded Future
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hacker News - Newest:
Hacker News - Newest: "LLM"
腾讯CDC
L
LINUX DO - 最新话题
Google DeepMind News
Google DeepMind News
P
Privacy International News Feed
I
InfoQ
F
Fortinet All Blogs
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
Threatpost
T
Tenable Blog
B
Blog RSS Feed

Recent Commits to infra:main

Explain literal syntax in terms of code points List's remove now indicates success and list gains has duplicates Add list slice Add list reverse · whatwg/infra@7f8c8ee Meta: update repository files Review Draft Publication: January 2026 Editorial: "for each" is paired with "of" & link asserts Define singleton types Meta: link to Korean translations Review Draft Publication: July 2025 Meta: link Simplified Chinese translation Get a map value with a default Editorial: remove "then" before substeps Review Draft Publication: January 2025 Define equality for sets · whatwg/infra@2c3dbce Define an algorithm to create a set from a list Define difference for sets Warn about other notions of ASCII whitespace · whatwg/infra@2e8f05a Editorial: use the 16-bit unsigned integer definition in string
Add set extend operation · whatwg/infra@8c74b2a
domenic · 2025-01-29 · via Recent Commits to infra:main
Original file line numberDiff line numberDiff line change

@@ -1542,8 +1542,8 @@ list multiple assignment syntax is used.

15421542

<p>To <dfn export for=list>append</dfn> to a <a>list</a> that is not an <a>ordered set</a> is to

15431543

add the given <a for=list>item</a> to the end of the list.

15441544
1545-

<p>To <dfn export for=list>extend</dfn> a <a>list</a> |A| with a <a>list</a> |B|,

1546-

<a for=list>for each</a> |item| of |B|, <a for=list>append</a> |item| to |A|.

1545+

<p>To <dfn export for=list>extend</dfn> a <a>list</a> that is not an <a>ordered set</a> |A| with a

1546+

<a>list</a> |B|, <a for=list>for each</a> |item| of |B|, <a for=list>append</a> |item| to |A|.

15471547
15481548

<div class=example id=example-list-extend>

15491549

<ol>

@@ -1709,6 +1709,9 @@ ordered sets; implementations can optimize based on the fact that the order is n

17091709

the given <a for=set>item</a>, then do nothing; otherwise, perform the normal <a>list</a>

17101710

<a for=list>append</a> operation.

17111711
1712+

<p>To <dfn export for=set>extend</dfn> an [=ordered set=] |A| with a [=list=] |B|, [=list/for each=]

1713+

|item| of |B|, [=set/append=] |item| to |A|.

1714+
17121715

<p>To <dfn export for=set>prepend</dfn> to an <a>ordered set</a>: if the set

17131716

<a for=list>contains</a> the given <a for=set>item</a>, then do nothing; otherwise, perform the

17141717

normal <a>list</a> <a for=list>prepend</a> operation.