-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from Ragazoor/update
Update
- Loading branch information
Showing
17 changed files
with
427 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../main/scala/dev/ragz/io/IOBenchmark.scala → ...cala/io/github/ragazoor/IOBenchmark.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package dev.ragz.io | ||
package io.github.ragazoor | ||
|
||
import org.openjdk.jmh.annotations._ | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ala-2/dev/ragz/io/IOFailedException.scala → ...o/github/ragazoor/IOFailedException.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ala-3/dev/ragz/io/IOFailedException.scala → ...o/github/ragazoor/IOFailedException.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...c/main/scala/dev/ragz/io/FatalError.scala → ...scala/io/github/ragazoor/FatalError.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package dev.ragz.io | ||
package io.github.ragazoor | ||
|
||
private[io] final case class FatalError(e: Throwable) extends Throwable(e) |
2 changes: 1 addition & 1 deletion
2
...t/src/main/scala/dev/ragz/io/Future.scala → ...ain/scala/io/github/ragazoor/Future.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...src/main/scala/dev/ragz/io/NonFatal.scala → ...n/scala/io/github/ragazoor/NonFatal.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package dev.ragz.io | ||
package io.github.ragazoor | ||
|
||
import scala.util.control | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package io.github.ragazoor | ||
|
||
import scala.concurrent.{ Future => StdFuture } | ||
|
||
object implicits { | ||
implicit class StdFutureToIo[A](val future: StdFuture[A]) { | ||
def io: IO[Throwable, A] = IO.fromFuture(future) | ||
} | ||
|
||
} |
Oops, something went wrong.