Swift运算符在多个库中定义; "暧昧"

Sco*_*oss 6 namespaces operators swift

我需要在iOS项目中使用的外部库

pod 'SQLite.swift', '~> 0.10.1'
pod 'ObjectMapper', '~> 1.3'
Run Code Online (Sandbox Code Playgroud)

在课堂上,我试图同时使用两者:

import Foundation
import SQLite
import ObjectMapper

class SqlLiteDataManager
{
   init()
   {
      let insert = experiences.insert(json <- jsonValue, isPublicExpr <- isPublic)
   }
}
Run Code Online (Sandbox Code Playgroud)

"< - "现在抛出错误,因为它在两个库中定义.抛出的错误是为运算符找到的不明确的运算符声明

那么..除了创建一个单独的文件,有没有办法解决这个相同的类/文件?