-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/growth12 #3062
Feature/growth12 #3062
Conversation
introduce Synthesize interface
…pool Feature/synthesize result pool
Feature/synthesize item
Please rebase/merge 1.20.2 to see only your works. |
Deploying lib9c with Cloudflare Pages
|
Lib9c/TableData/TableExtensions.cs
Outdated
public static float ParseFloat(string value) | ||
{ | ||
if (TryParseFloat(value, out var result)) | ||
{ | ||
return result; | ||
} | ||
throw new ArgumentException(value); | ||
} | ||
|
||
public static float ParseFloat(string value, float defaultValue) => | ||
TryParseFloat(value, out var result) ? result : defaultValue; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
float 를 쓸 일이 없어야 할 것 같은데, ParseFloat 가 어디에서 쓰이나요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
안쓰이고 있고, 저번주 주간미팅 전 액션에서 float 사용하지 말자고 공지받기 전 추가했던 건데 여기서 바로 제거해두겠습니다
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
7c19a07
커밋에서 제거해두었습니다
250 패치내역과 섞이지 않게 별도 분리했던 브랜치를 병합합니다.