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

推荐订阅源

K
Kaspersky official blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
V
Visual Studio Blog
F
Full Disclosure
B
Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
L
Lohrmann on Cybersecurity
月光博客
月光博客
I
Intezer
博客园 - 三生石上(FineUI控件)
Hacker News - Newest:
Hacker News - Newest: "LLM"
D
Darknet – Hacking Tools, Hacker News & Cyber Security
博客园_首页
P
Proofpoint News Feed
C
Check Point Blog
N
News | PayPal Newsroom
H
Heimdal Security Blog
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
G
GRAHAM CLULEY
WordPress大学
WordPress大学
C
CERT Recently Published Vulnerability Notes
Y
Y Combinator Blog
Recorded Future
Recorded Future
Application and Cybersecurity Blog
Application and Cybersecurity Blog
T
Tailwind CSS Blog
W
WeLiveSecurity
L
LINUX DO - 热门话题
Microsoft Azure Blog
Microsoft Azure Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Schneier on Security
Schneier on Security
爱范儿
爱范儿
Martin Fowler
Martin Fowler
U
Unit 42
T
Troy Hunt's Blog
S
Securelist
V
V2EX
V2EX - 技术
V2EX - 技术
MongoDB | Blog
MongoDB | Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
博客园 - 聂微东
人人都是产品经理
人人都是产品经理
M
MIT News - Artificial intelligence
T
Tor Project blog
Cisco Talos Blog
Cisco Talos Blog
罗磊的独立博客
小众软件
小众软件
阮一峰的网络日志
阮一峰的网络日志
Vercel News
Vercel News

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|.