mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 20:34:44 +00:00
add external files
This commit is contained in:
parent
7823243dbe
commit
92aa3ea078
122 changed files with 1087 additions and 0 deletions
3
crates/erg_compiler/lib/external/matplotlib.d/axes.d/__init__.d.er
vendored
Normal file
3
crates/erg_compiler/lib/external/matplotlib.d/axes.d/__init__.d.er
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
._axes = pyimport "./_axes"
|
||||
|
||||
.Axes! = ._axes.Axes!
|
21
crates/erg_compiler/lib/external/matplotlib.d/axes.d/_axes.d.er
vendored
Normal file
21
crates/erg_compiler/lib/external/matplotlib.d/axes.d/_axes.d.er
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
.Axes!: ClassType
|
||||
.Axes!.
|
||||
scatter!: (
|
||||
self: RefMut(.Axes!),
|
||||
x: Num, # TODO: Float | ArrayLike
|
||||
y: Num,
|
||||
s := Num,
|
||||
c := Iterable(Int),
|
||||
vmin := Float,
|
||||
vmax := Float,
|
||||
) => NoneType
|
||||
set!: (
|
||||
self: RefMut(.Axes!),
|
||||
xlabel := Str,
|
||||
xlim := (Float, Float),
|
||||
xticks := Iterable(Obj),
|
||||
ylabel := Str,
|
||||
ylim := (Float, Float),
|
||||
yticks := Iterable(Obj),
|
||||
title := Str
|
||||
) => NoneType
|
Loading…
Add table
Add a link
Reference in a new issue