提交 f2b5cd60 编写于 作者: 梦境迷离's avatar 梦境迷离

update readme

上级 9c0dfa93
......@@ -38,7 +38,7 @@ Learn Scala macro and abstract syntax tree.
- Zero dependency, type-safe
```scala
"org.bitlap" %% "smt-csv-core" % "<VERSION>" // since 0.5.1
"org.bitlap" %% "smt-csv-core" % "<VERSION>" // since 0.5.2
```
## csv-derive
......@@ -46,7 +46,7 @@ Learn Scala macro and abstract syntax tree.
- `DeriveCsvConverter` Automatically derive`Converter`instances for Scala`case class`
```scala
"org.bitlap" %% "smt-csv-derive" % "<VERSION>" // since 0.5.1
"org.bitlap" %% "smt-csv-derive" % "<VERSION>" // since 0.5.2
```
## tools
......
......@@ -31,7 +31,7 @@ package org.bitlap.csv.core
trait Csvable[T] {
@InternalApi
private[core] def _toCsvString(t: T): String = ""
def _toCsvString(t: T): String = ""
def toCsvString: String = ""
......
......@@ -24,6 +24,8 @@ package org.bitlap.csv.core
import scala.annotation.StaticAnnotation
/**
* The annotation notes the method should only be used in library.
*
* @author 梦境迷离
* @version 1.0,2022/5/1
*/
......
......@@ -31,7 +31,7 @@ package org.bitlap.csv.core
trait Scalable[T] {
@InternalApi
private[core] def _toScala(line: String): Option[T] = None
def _toScala(line: String): Option[T] = None
def toScala: Option[T] = None
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册