Home
last modified time | relevance | path

Searched defs:Circular (Results 1 – 2 of 2) sorted by relevance

/third_party/typescript/tests/cases/conformance/types/mapped/
DrecursiveMappedTypes.ts19 export type Circular<T> = {[P in keyof T]: Circular<T>}; alias
/third_party/python/Lib/test/
Dtest_queue.py630 class Circular(object): class