FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Numpy.NET/test/Numpy.UnitTest/TestingExtensions.cs at main · SciSharp/Numpy.NET · GitHub
SciSharp
/
Numpy.NET
Public
Notifications
You must be signed in to change notification settings
Fork
103
Star
758
Code
Issues
16
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Numpy.NET
/
test
/
Numpy.UnitTest
/
TestingExtensions.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
16 lines (15 loc) · 417 Bytes
Breadcrumbs
Numpy.NET
/
test
/
Numpy.UnitTest
/
TestingExtensions.cs
Copy path
File metadata and controls
16 lines (15 loc) · 417 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using
System
;
using
System
.
Collections
.
Generic
;
using
System
.
Linq
;
using
System
.
Text
;
namespace
Numpy
.
UnitTest
{
public
static
class
TestingExtensions
{
// use this to simulate Python tuples, because we use arrays instead
public
static
string
repr
(
this
NDarray
[
]
self
)
{
return
"("
+
string
.
Join
(
", "
,
self
.
Select
(
a
=>
a
.
repr
)
)
+
")"
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL