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

推荐订阅源

K
Kaspersky official blog
小众软件
小众软件
Engineering at Meta
Engineering at Meta
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
G
Google Developers Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Google DeepMind News
Google DeepMind News
Security Archives - TechRepublic
Security Archives - TechRepublic
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
C
Check Point Blog
aimingoo的专栏
aimingoo的专栏
罗磊的独立博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MongoDB | Blog
MongoDB | Blog
L
LINUX DO - 热门话题
酷 壳 – CoolShell
酷 壳 – CoolShell
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Help Net Security
Martin Fowler
Martin Fowler
G
GRAHAM CLULEY
Simon Willison's Weblog
Simon Willison's Weblog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
V
Vulnerabilities – Threatpost
云风的 BLOG
云风的 BLOG
博客园_首页
C
Cybersecurity and Infrastructure Security Agency CISA
量子位
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
I
Intezer
Scott Helme
Scott Helme
A
About on SuperTechFans
博客园 - 司徒正美
Hacker News: Ask HN
Hacker News: Ask HN
The GitHub Blog
The GitHub Blog
Forbes - Security
Forbes - Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
博客园 - 聂微东
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Spread Privacy
Spread Privacy
T
Tailwind CSS Blog
S
Security Affairs
宝玉的分享
宝玉的分享

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 Add set extend operation · whatwg/infra@8c74b2a Editorial: remove "then" before substeps Review Draft Publication: January 2025 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
Define equality for sets · whatwg/infra@2c3dbce
OrKoN · 2025-01-10 · via Recent Commits to infra:main
Original file line numberDiff line numberDiff line change

@@ -1728,6 +1728,9 @@ of either with <var>replacement</var> and <a for=set>remove</a> all other instan

17281728

<p class=note>This implies that an <a>ordered set</a> is both a <a for=set>subset</a> and a

17291729

<a for=set>superset</a> of itself.

17301730
1731+

<p>A [=/set=] |A| is <dfn export for=set>equal</dfn> to a [=/set=] |B|

1732+

if |A| is a [=subset=] of |B| and |A| is a [=superset=] of |B|.

1733+
17311734

<p>The <dfn export for=set>intersection</dfn> of <a>ordered sets</a> |A| and |B|, is the result

17321735

of creating a new <a>ordered set</a> |set| and, <a for=list>for each</a> |item| of |A|, if |B|

17331736

<a for=set>contains</a> |item|, <a for=set>appending</a> |item| to |set|.