File tree Expand file tree Collapse file tree 2 files changed +16
-16
lines changed
i18n/en/docusaurus-plugin-content-docs/current/basic_coding/core Expand file tree Collapse file tree 2 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -29,10 +29,10 @@ class TimeDiffUS {
29
29
public:
30
30
TimeDiffUS(uint64_t diff);
31
31
operator uint64_t() const;
32
- double to_second () const;
33
- float to_secondf () const;
34
- uint64_t to_microsecond () const;
35
- uint32_t to_millisecond () const;
32
+ double ToSecond () const;
33
+ float ToSecondf () const;
34
+ uint64_t ToMicrosecond () const;
35
+ uint32_t ToMillisecond () const;
36
36
};
37
37
```
38
38
@@ -59,10 +59,10 @@ class TimeDiffMS {
59
59
public:
60
60
TimeDiffMS(uint32_t diff);
61
61
operator uint32_t() const;
62
- double to_second ();
63
- float to_secondf ();
64
- uint32_t to_millisecond () const;
65
- uint64_t to_microsecond () const;
62
+ double ToSecond ();
63
+ float ToSecondf ();
64
+ uint64_t ToMicrosecond () const;
65
+ uint32_t ToMillisecond () const;
66
66
};
67
67
```
68
68
Original file line number Diff line number Diff line change @@ -29,10 +29,10 @@ class TimeDiffUS {
29
29
public:
30
30
TimeDiffUS(uint64_t diff);
31
31
operator uint64_t() const;
32
- double to_second () const;
33
- float to_secondf () const;
34
- uint64_t to_microsecond () const;
35
- uint32_t to_millisecond () const;
32
+ double ToSecond () const;
33
+ float ToSecondf () const;
34
+ uint64_t ToMicrosecond () const;
35
+ uint32_t ToMillisecond () const;
36
36
};
37
37
```
38
38
@@ -59,10 +59,10 @@ class TimeDiffMS {
59
59
public:
60
60
TimeDiffMS(uint32_t diff);
61
61
operator uint32_t() const;
62
- double to_second ();
63
- float to_secondf ();
64
- uint32_t to_millisecond () const;
65
- uint64_t to_microsecond () const;
62
+ double ToSecond ();
63
+ float ToSecondf ();
64
+ uint64_t ToMicrosecond () const;
65
+ uint32_t ToMillisecond () const;
66
66
};
67
67
```
68
68
You can’t perform that action at this time.
0 commit comments